11 lines
212 B
C
11 lines
212 B
C
#ifndef _ENDS_WITH_H
|
|
#define _ENDS_WITH_H
|
|
|
|
#include <ctype.h>
|
|
#include <errno.h>
|
|
#include <stdbool.h>
|
|
#include <string.h>
|
|
|
|
bool ends_with_casefold(const char* str, const char* substr);
|
|
|
|
#endif /* _ENDS_WITH_H */
|