StringVector utilities
| 383 | // Implementation |
| 384 | PathContext Path_init(void) { |
| 385 | PathContext ctx; |
| 386 | #ifdef _WIN32 |
| 387 | ctx.separator = '\\'; |
| 388 | #else |
| 389 | ctx.separator = '/'; |
| 390 | #endif |
| 391 | return ctx; |
| 392 | } |
| 393 | |
| 394 | #ifdef _WIN32 |
| 395 | unsigned long long String_hashFnv1a(const char* str) { |
| 396 | unsigned long long hash = 1469598103934665603ULL; |
no outgoing calls
no test coverage detected