rk/strcmp.h
2024-05-21 21:07:04 -05:00

8 lines
143 B
C

#ifndef RK_STRCMP_
#define RK_STRCMP_
int strcmp(const char *s1, const char *s2);
int strncmp(const char *s1, const char *s2, int n);
#endif