strcmp.h (104B)
1 #pragma once 2 3 #ifndef STRCMP_H 4 #define STRCMP_H 5 6 int strcmp (const char *st1, const char *st2); 7 8 #endif