• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include <stdio.h>
2 
3 #include <string>
4 
foo(const std::string & s)5 void foo(const std::string& s) {
6   printf("%s\n", s.c_str());
7 }
8