You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
670 B
C
24 lines
670 B
C
/* this header file comes from libowfat, http://www.fefe.de/libowfat/ */
|
|
#ifndef CASE_H
|
|
#define CASE_H
|
|
|
|
#include <stddef.h>
|
|
|
|
/* turn upper case letters to lower case letters, ASCIIZ */
|
|
void case_lowers(char *s);
|
|
/* turn upper case letters to lower case letters, binary */
|
|
void case_lowerb(void *buf,size_t len);
|
|
|
|
/* like str_diff, ignoring case */
|
|
int case_diffs(const char *,const char *);
|
|
/* like byte_diff, ignoring case */
|
|
int case_diffb(const void *,size_t ,const void *);
|
|
|
|
/* like str_start, ignoring case */
|
|
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)))
|
|
|
|
#endif
|