mirror of
https://git.disroot.org/80486DX2-66/polonium.git
synced 2024-11-08 13:42:31 +05:30
12 lines
212 B
C
12 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 */
|