update tiny c runtime library
[ti-x.git] / src / arch / lib / utils.h
blobff6d14380130b5fd93f5c5e7b954b95fa6372f01
1 /* the ti-x embed operation system
2 *
3 * it is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * it is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with it; If not, see <a href="http://www.gnu.org/licenses/">http://www.gnu.org/licenses/</a>
16 * Copyright (C) 2009, Ruki All rights reserved.
17 * Home: <a href="http://www.xxx.org">http://www.xxx.org</a>
19 * \author ruki
20 * \date 09.12.06
21 * \file utils.h
24 #ifndef TI_ARCH_LIB_UTILS_H
25 #define TI_ARCH_LIB_UTILS_H
27 // c plus plus
28 #ifdef __cplusplus
29 extern "C" {
30 #endif
32 /* ////////////////////////////////////////////////////////////////////////
33 * includes
35 #include "prefix.h"
37 /* ////////////////////////////////////////////////////////////////////////
38 * macros
41 /* ////////////////////////////////////////////////////////////////////////
42 * interfaces
45 ti_bool_t ti_isdigit(ti_char_t c);
47 // c plus plus
48 #ifdef __cplusplus
50 #endif
51 #endif