Files
2023-09-11 19:36:23 -04:00

15 lines
240 B
C

#ifndef UNSORTED_FUNCTIONS_H
#define UNSORTED_FUNCTIONS_H
#ifdef __cplusplus
extern "C" {
#endif // __cplusplus
extern int strcmp(char* leftStr, char* rightStr);
#ifdef __cplusplus
}
#endif // __cplusplus
#endif // UNSORTED_FUNCTIONS_H