First commit
This commit is contained in:
commit
0a28bac78a
37 changed files with 1963 additions and 0 deletions
11
trim.h
Normal file
11
trim.h
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
#ifndef _TRIM_H_
|
||||
#define _TRIM_H_
|
||||
|
||||
#include <ctype.h>
|
||||
#include <string.h>
|
||||
|
||||
char * ltrim(char *s);
|
||||
char * rtrim(char *s);
|
||||
char * trim(char *s);
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue