-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcase.h
39 lines (29 loc) · 902 Bytes
/
case.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/* this header file comes from libowfat, http://www.fefe.de/libowfat/ */
#ifndef CASE_H
#define CASE_H
#include <stddef.h>
#include <libowfat/compiler.h>
#ifdef __cplusplus
extern "C" {
#endif
/* turn upper case letters to lower case letters, ASCIIZ */
__strinout(1)
void case_lowers(char *s);
/* turn upper case letters to lower case letters, binary */
__strninout(1,2)
void case_lowerb(void *buf,size_t len);
/* like str_diff, ignoring case */
att_pure __strin(1) __strin(2)
int case_diffs(const char *,const char *);
/* like byte_diff, ignoring case */
att_pure __strnin(1,2) __strnin(3,2)
int case_diffb(const void *,size_t ,const void *);
/* like str_start, ignoring case */
att_pure __strin(1) __strin(2)
int case_starts(const char *,const char *);
#define case_equals(s,t) (!case_diffs((s),(t)))
#define case_equalb(s,n,t) (!case_diffb((s),(n),(t)))
#ifdef __cplusplus
}
#endif
#endif