mirror of
https://github.com/ipxe/ipxe
synced 2025-12-16 01:21:10 +03:00
Move tolower() etc to ctype.h as per ISO C
This commit is contained in:
@@ -24,6 +24,7 @@
|
|||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
#include <ctype.h>
|
||||||
|
|
||||||
/* *** FROM string.c *** */
|
/* *** FROM string.c *** */
|
||||||
|
|
||||||
|
|||||||
28
src/include/ctype.h
Normal file
28
src/include/ctype.h
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
#ifndef _CTYPE_H
|
||||||
|
#define _CTYPE_H
|
||||||
|
|
||||||
|
/** @file
|
||||||
|
*
|
||||||
|
* Character types
|
||||||
|
*/
|
||||||
|
|
||||||
|
#define isdigit(c) ((c & 0x04) != 0)
|
||||||
|
#define islower(c) ((c & 0x02) != 0)
|
||||||
|
//#define isspace(c) ((c & 0x20) != 0)
|
||||||
|
#define isupper(c) ((c & 0x01) != 0)
|
||||||
|
|
||||||
|
static inline unsigned char tolower(unsigned char c)
|
||||||
|
{
|
||||||
|
if (isupper(c))
|
||||||
|
c -= 'A'-'a';
|
||||||
|
return c;
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline unsigned char toupper(unsigned char c)
|
||||||
|
{
|
||||||
|
if (islower(c))
|
||||||
|
c -= 'a'-'A';
|
||||||
|
return c;
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif /* _CTYPE_H */
|
||||||
@@ -14,33 +14,8 @@
|
|||||||
#ifndef ETHERBOOT_STRING_H
|
#ifndef ETHERBOOT_STRING_H
|
||||||
#define ETHERBOOT_STRING_H
|
#define ETHERBOOT_STRING_H
|
||||||
|
|
||||||
#include "stddef.h"
|
#include <stddef.h>
|
||||||
#include "bits/string.h"
|
#include <bits/string.h>
|
||||||
|
|
||||||
|
|
||||||
/* *** FROM ctype.h *** */
|
|
||||||
|
|
||||||
#define isdigit(c) ((c & 0x04) != 0)
|
|
||||||
#define islower(c) ((c & 0x02) != 0)
|
|
||||||
//#define isspace(c) ((c & 0x20) != 0)
|
|
||||||
#define isupper(c) ((c & 0x01) != 0)
|
|
||||||
|
|
||||||
static inline unsigned char tolower(unsigned char c)
|
|
||||||
{
|
|
||||||
if (isupper(c))
|
|
||||||
c -= 'A'-'a';
|
|
||||||
return c;
|
|
||||||
}
|
|
||||||
|
|
||||||
static inline unsigned char toupper(unsigned char c)
|
|
||||||
{
|
|
||||||
if (islower(c))
|
|
||||||
c -= 'a'-'A';
|
|
||||||
return c;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/* *** FROM string.h *** */
|
|
||||||
|
|
||||||
int strnicmp(const char *s1, const char *s2, size_t len);
|
int strnicmp(const char *s1, const char *s2, size_t len);
|
||||||
char * strcpy(char * dest,const char *src);
|
char * strcpy(char * dest,const char *src);
|
||||||
|
|||||||
Reference in New Issue
Block a user