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