11 lines
151 B
C
11 lines
151 B
C
#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
|