9 lines
115 B
C
9 lines
115 B
C
#ifndef TEXTC_H
|
|
#define TEXTC_H
|
|
|
|
char *str_dup(char *s);
|
|
char *tostrupr(char *s);
|
|
char *tostrlwr(char *s);
|
|
|
|
#endif
|