| 1332 | } |
| 1333 | |
| 1334 | int fxStringEndsWith(const char *string, const char *suffix) |
| 1335 | { |
| 1336 | size_t stringLength = strlen(string); |
| 1337 | size_t suffixLength = strlen(suffix); |
| 1338 | return (stringLength >= suffixLength) && (0 == strcmp(string + (stringLength - suffixLength), suffix)); |
| 1339 | } |
| 1340 | |
| 1341 | void fxWriteConfiguration(txPool* pool, char* path) |
| 1342 | { |
no outgoing calls
no test coverage detected