summaryrefslogtreecommitdiff
path: root/c,cc/stringutil.h
blob: 153068a75274272e305bf02e42ee18957e29e9bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef STRINGUTIL_H
#define STRINGUTIL_H

#include <string.h>
#include <stdbool.h>


char* strend(char* s);
bool endswith(char* s, char* suff);


#endif