|
Home --> Documentations --> PJLIB Reference
Go to the documentation of this file.
20 #ifndef __PJ_CTYPE_H__
21 #define __PJ_CTYPE_H__
29 #include <pj/compat/ctype.h>
141 #define pj_hex_digits "0123456789abcdef"
163 return (c- '0') & 0x0F;
165 return (c- 'A'+10) & 0x0F;
167 return (c- 'a'+10) & 0x0F;
PJLIB Open Source, high performance, small footprint, and very very portable framework
Copyright (C) 2006-2009 Teluu Inc.
|