mirror of /home/gitosis/repositories/libowfat.git
Mirror of :pserver:cvs@cvs.fefe.de:/cvs libowfat
https://www.fefe.de/libowfat/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
739 B
31 lines
739 B
/* this header file comes from libowfat, http://www.fefe.de/libowfat/ */ |
|
#ifndef CASE_H |
|
#define CASE_H |
|
|
|
#include <stddef.h> |
|
|
|
#ifdef __cplusplus |
|
extern "C" { |
|
#endif |
|
|
|
/* 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))) |
|
|
|
#ifdef __cplusplus |
|
} |
|
#endif |
|
|
|
#endif
|
|
|