8 lines
106 B
C
8 lines
106 B
C
#ifndef STRINGS_H
|
|
#define STRINGS_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
bool strcmp(char* a, char* b, int max);
|
|
|
|
#endif |