diff options
author | Daniel Kraft <d@domob.eu> | 2009-06-06 17:23:44 +0200 |
---|---|---|
committer | Daniel Kraft <d@domob.eu> | 2009-06-06 17:23:44 +0200 |
commit | 193e0bddf1fbd1be5b1e08682849aeed7bb39338 (patch) | |
tree | 33ce58d182b5ba338ceadd01d6d27504bdd6ef79 /lib/unitypes.h | |
parent | e8dc7e523a263a8092c18a540803c39baae9ec46 (diff) | |
parent | 12798872ff39e27dbcf90675c3d3554ae27df750 (diff) | |
download | guile-brainfuck.tar.gz |
Merge branch 'master' of git://git.savannah.gnu.org/guile into brainfuckbrainfuck
Diffstat (limited to 'lib/unitypes.h')
-rw-r--r-- | lib/unitypes.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/lib/unitypes.h b/lib/unitypes.h new file mode 100644 index 000000000..fe8d87735 --- /dev/null +++ b/lib/unitypes.h @@ -0,0 +1,26 @@ +/* Elementary types for the GNU UniString library. + Copyright (C) 2002, 2005-2006 Free Software Foundation, Inc. + + This program is free software: you can redistribute it and/or modify it + under the terms of the GNU Lesser General Public License as published + by the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see <http://www.gnu.org/licenses/>. */ + +#ifndef _UNITYPES_H +#define _UNITYPES_H + +/* Get uint8_t, uint16_t, uint32_t. */ +#include <stdint.h> + +/* Type representing a Unicode character. */ +typedef uint32_t ucs4_t; + +#endif /* _UNITYPES_H */ |