str.cpp 95 B

12345
  1. #include <string>
  2. extern "C" size_t str_size(const std::string& str) {
  3. return str.size();
  4. }