mirror of
https://github.com/encounter/sms-dtk.git
synced 2026-03-30 11:38:31 -07:00
15 lines
240 B
C
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
|