untested bug fix
This commit is contained in:
+16
-1
@@ -8,9 +8,24 @@
|
||||
typedef enum FOModOrder { ASC, DESC, ORD } FOModOrder_t;
|
||||
|
||||
bool validateNode(xmlNodePtr * node, bool skipText, const char * names, ...);
|
||||
/**
|
||||
* @brief Free memory of and xmlChar and return a strdup version. just to make sure there is nothing remaining in libxml
|
||||
*/
|
||||
char * freeAndDup(xmlChar * line);
|
||||
FOModOrder_t getFOModOrder(const char * order);
|
||||
/**
|
||||
* @brief replace / by \
|
||||
* @param path
|
||||
*/
|
||||
void fixPath(char * path);
|
||||
int countUntilNull(void * pointers);
|
||||
|
||||
/**
|
||||
* @brief Count the number of step before null
|
||||
*
|
||||
* @param pointers pointer to the list
|
||||
* @param typeSize size of each element of the list
|
||||
* @return size
|
||||
*/
|
||||
int countUntilNull(void * pointers, size_t typeSize);
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user