project_files/frontlib/util/util.h
changeset 7275 15f722e0b96f
parent 7269 5b0aeef8ba2a
child 7314 6171f0bad318
equal deleted inserted replaced
7273:8eed495fd8da 7275:15f722e0b96f
    85  * one that must be free()d. Returns null on failure or if null was
    85  * one that must be free()d. Returns null on failure or if null was
    86  * passed as argument.
    86  * passed as argument.
    87  */
    87  */
    88 char *flib_urldecode(const char *str);
    88 char *flib_urldecode(const char *str);
    89 
    89 
       
    90 /**
       
    91  * Figure out if the string contains / or \. Useful in routines that
       
    92  * construct filenames.
       
    93  */
       
    94 bool flib_contains_dir_separator(const char *str);
       
    95 
       
    96 int flib_gets(char *str, size_t strlen);
       
    97 
    90 #endif
    98 #endif