VirtualBox

Changeset 95975 in vbox for trunk/include/iprt/nocrt/ctype.h


Ignore:
Timestamp:
Aug 2, 2022 12:55:08 AM (3 years ago)
Author:
vboxsync
Message:

include/iprt/nocrt: Prototyped a whole bunch of things to make mesa (almost) compile. bugref:10261

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/iprt/nocrt/ctype.h

    r93115 r95975  
    3030#endif
    3131
     32#include <iprt/ctype.h>
     33
     34#define isspace(a_ch)       RT_C_IS_SPACE(a_ch)
     35#define isblank(a_ch)       RT_C_IS_BLANK(a_ch)
     36#define isdigit(a_ch)       RT_C_IS_DIGIT(a_ch)
     37#define isxdigit(a_ch)      RT_C_IS_XDIGIT(a_ch)
     38#define isalpha(a_ch)       RT_C_IS_ALPHA(a_ch)
     39#define isalnum(a_ch)       RT_C_IS_ALNUM(a_ch)
     40#define iscntrl(a_ch)       RT_C_IS_CNTRL(a_ch)
     41#define isgraph(a_ch)       RT_C_IS_GRAPH(a_ch)
     42#define ispunct(a_ch)       RT_C_IS_PUNCT(a_ch)
     43#define isprint(a_ch)       RT_C_IS_PRINT(a_ch)
     44#define isupper(a_ch)       RT_C_IS_UPPER(a_ch)
     45#define islower(a_ch)       RT_C_IS_LOWER(a_ch)
     46
    3247#endif /* !IPRT_INCLUDED_nocrt_ctype_h */
    3348
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette