First commit

This commit is contained in:
Steffen Lange 2018-04-08 21:34:42 +02:00
commit 0a28bac78a
37 changed files with 1963 additions and 0 deletions

11
trim.h Normal file
View 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