| 20 | #include "xode.h" |
| 21 | |
| 22 | static int _xode_strcmp(const char *a, const char *b) |
| 23 | { |
| 24 | if(a == NULL || b == NULL) return -1; |
| 25 | |
| 26 | return strcmp(a,b); |
| 27 | } |
| 28 | |
| 29 | /* Internal routines */ |
| 30 | static xode _xode_new(xode_pool p, const char* name, unsigned int type) |
no outgoing calls
no test coverage detected