Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
3584 sourcerer 1
/*
2
 * Copyright 2008 John-Mark Bell 
3
 *
4
 * This file is part of NetSurf, http://www.netsurf-browser.org/
5
 *
6
 * NetSurf is free software; you can redistribute it and/or modify
7
 * it under the terms of the GNU General Public License as published by
8
 * the Free Software Foundation; version 2 of the License.
9
 *
10
 * NetSurf is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 * GNU General Public License for more details.
14
 *
15
 * You should have received a copy of the GNU General Public License
16
 * along with this program.  If not, see .
17
 */
18
 
19
/** \file
20
 * Locale-specific variants of various routines (interface)
21
 */
22
 
23
#ifndef _NETSURF_UTILS_LOCALE_H_
24
#define _NETSURF_UTILS_LOCALE_H_
25
 
26
/*  functions */
27
int ls_isalpha(int c);
28
int ls_isalnum(int c);
29
int ls_iscntrl(int c);
30
int ls_isdigit(int c);
31
int ls_isgraph(int c);
32
int ls_islower(int c);
33
int ls_isprint(int c);
34
int ls_ispunct(int c);
35
int ls_isspace(int c);
36
int ls_isupper(int c);
37
int ls_isxdigit(int c);
38
int ls_tolower(int c);
39
int ls_toupper(int c);
40
 
41
#endif
42