24 lines
431 B
C
24 lines
431 B
C
/*!
|
|
* @file xstring.h
|
|
* @brief
|
|
* @details
|
|
* Project: \n
|
|
* Subsystem: \n
|
|
* Module: \n
|
|
* Code: GNU-C\n
|
|
*
|
|
* @date 27.02.2017
|
|
* @author Martin Winkler
|
|
*/
|
|
#ifndef XSTRING_H_
|
|
#define XSTRING_H_
|
|
|
|
#include <string.h>
|
|
|
|
char* gnu_basename(char *path);
|
|
uint32_t xStrCount(char *aStr, char aC);
|
|
char* strntrimStatic(char *aStr, size_t aMaxLength);
|
|
void xStringTrim(char *aStr, size_t aMaxLength);
|
|
|
|
#endif /* XSTRING_H_ */
|