7 lines
101 B
C
7 lines
101 B
C
#ifndef _STRING_H
|
|
#define _STRING_H
|
|
|
|
int strcmp(const char *s1,const char *s2);
|
|
|
|
#endif // _STRING_H
|