rk/strcmp.h

8 lines
143 B
C
Raw Normal View History

2024-05-20 17:39:20 -04:00
#ifndef RK_STRCMP_
#define RK_STRCMP_
2024-05-21 22:07:04 -04:00
int strcmp(const char *s1, const char *s2);
int strncmp(const char *s1, const char *s2, int n);
2024-05-20 17:39:20 -04:00
#endif