- refactored to modular structure

This commit is contained in:
2017-02-27 07:28:38 +00:00
parent ba8c750b75
commit 05dd972ec7
9 changed files with 478 additions and 271 deletions

21
src/ext/xstring.h Normal file
View File

@@ -0,0 +1,21 @@
/*!
* @file xstring.h
* @brief
* @details
* Project: \n
* Subsystem: \n
* Module: \n
* Code: GNU-C\n
*
* @date 27.02.2017
* @author SESA354004
*/
#ifndef XSTRING_H_
#define XSTRING_H_
#include <string.h>
char* gnu_basename(char *path);
char* strntrimStatic(char *aStr, size_t aMaxLength);
#endif /* XSTRING_H_ */