| 123 | } |
| 124 | |
| 125 | extern "C" const char * |
| 126 | OPS_GetString(void) |
| 127 | { |
| 128 | const char *res = 0; |
| 129 | if (currentArg >= maxArg) { |
| 130 | return res; |
| 131 | } |
| 132 | res = currentArgv[currentArg]; |
| 133 | |
| 134 | currentArg++; |
| 135 | |
| 136 | return res; |
| 137 | } |
| 138 | |
| 139 | extern "C" const char * |
| 140 | OPS_GetStringFromAll(char *buffer, int len) |
no outgoing calls
no test coverage detected