summaryrefslogtreecommitdiffstats
path: root/usr/klibc/ctype/ctypefunc.h
blob: f9e247dffec848f69551da406ff9425726e51fcf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
 * ctype/ctype.h
 *
 * Common header for out-of-line ctype functions
 */

#define __CTYPE_NO_INLINE
#include <ctype.h>

#define CTYPEFUNC(X)				\
  int X(int c) {				\
    return __ctype_##X(c);			\
  }