aboutsummaryrefslogtreecommitdiff
path: root/src/common/include/ctype.h
blob: 9808c9f6507bff1d5d6a92b93fe082e2962c3681 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#pragma once

int isalnum(int c);
int isalpha(int c);
int isdigit(int c);
int isxdigit(int c);
int isspace(int c);
int isprint(int c);
int isupper(int c);
int islower(int c);
int ispunct(int c);
int isgraph(int c);
int iscntrl(int c);

int toupper(int c);
int tolower(int c);

/* vim: set sts=0 ts=4 sw=4 tw=0 noet :*/