| 72 | } |
| 73 | |
| 74 | void strreplaceall(luabind::internal_string& str, LPCSTR S, LPCSTR N) |
| 75 | { |
| 76 | LPCSTR A; |
| 77 | int S_len = xr_strlen(S); |
| 78 | while ((A = strstr(str.c_str(), S)) != 0) |
| 79 | str.replace(A - str.c_str(), S_len, N); |
| 80 | } |
| 81 | |
| 82 | static luabind::internal_string& process_signature(luabind::internal_string& str) |
| 83 | { |
no test coverage detected