Phyks (Lucas Verney)
d5a1855b1d
* Fix strings overflows and associated segfaults * Add some client code in Python
14 lines
244 B
C
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
|