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
|