blissify/include/utilities.h
Phyks (Lucas Verney) d5a1855b1d Large refactor
* Fix strings overflows and associated segfaults
* Add some client code in Python
2016-05-10 19:16:34 +02:00

14 lines
244 B
C

#ifndef UTILITIES_H
#define UTILITIES_H
/**
* Strip the trailing slash from a string.
*
* @param[in] str String to strip slash from.
* @param[out] str Stripped string.
*/
void strip_trailing_slash(char* str);
#endif // UTILITIES_H