/elec/propeller-clock

To get this branch, use:
bzr branch http://bzr.ed.am/elec/propeller-clock

« back to all changes in this revision

Viewing changes to src/utility/cwchar

  • Committer: edam
  • Date: 2012-02-28 16:50:26 UTC
  • Revision ID: edam@waxworlds.org-20120228165026-pwnwo300xx2e2kg6
removed ulibc, fixed button, added text rendering

Show diffs side-by-side

added added

removed removed

1
 
/*      Copyright (C) 2006 Garrett A. Kajmowicz
2
 
 
3
 
        This file is part of the uClibc++ Library.
4
 
        This library is free software; you can redistribute it and/or
5
 
        modify it under the terms of the GNU Lesser General Public
6
 
        License as published by the Free Software Foundation version 2.1
7
 
 
8
 
        This library 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 GNU
11
 
        Lesser General Public License for more details.
12
 
 
13
 
        You should have received a copy of the GNU Lesser General Public
14
 
        License along with this library; if not, write to the Free Software
15
 
        Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
 
*/
17
 
 
18
 
#include <wchar.h>
19
 
#include <basic_definitions>
20
 
 
21
 
#ifndef __HEADER_CWCHAR
22
 
#define __HEADER_CWCHAR 1
23
 
 
24
 
 
25
 
namespace std{
26
 
        using ::mbstate_t;
27
 
        using ::wint_t;
28
 
 
29
 
        using ::btowc;
30
 
        using ::fgetwc;
31
 
        using ::fgetws;
32
 
        using ::fputwc;
33
 
        using ::fputws;
34
 
        using ::fwide;
35
 
        using ::fwprintf;
36
 
        using ::fwscanf;
37
 
        using ::getwc;
38
 
        using ::getwchar;
39
 
        using ::mbrlen;
40
 
        using ::mbrtowc;
41
 
        using ::mbsinit;
42
 
        using ::mbsrtowcs;
43
 
        using ::putwc;
44
 
        using ::putwchar;
45
 
        using ::swprintf;
46
 
        using ::swscanf;
47
 
        using ::ungetwc;
48
 
        using ::vfwprintf;
49
 
        using ::vswprintf;
50
 
        using ::vwprintf;
51
 
        using ::wcrtomb;
52
 
        using ::wcscat;
53
 
        using ::wcschr;
54
 
        using ::wcscmp;
55
 
        using ::wcscoll;
56
 
        using ::wcscpy;
57
 
        using ::wcscspn;
58
 
        using ::wcsftime;
59
 
        using ::wcslen;
60
 
        using ::wcsncat;
61
 
        using ::wcsncmp;
62
 
        using ::wcsncpy;
63
 
        using ::wcspbrk;
64
 
        using ::wcsrchr;
65
 
        using ::wcsrtombs;
66
 
        using ::wcsspn;
67
 
        using ::wcsstr;
68
 
        using ::wcstod;
69
 
        using ::wcstok;
70
 
        using ::wcstol;
71
 
        using ::wcstoul;
72
 
        using ::wcsxfrm;
73
 
        using ::wctob;
74
 
        using ::wmemchr;
75
 
        using ::wmemcmp;
76
 
        using ::wmemcpy;
77
 
        using ::wmemmove;
78
 
        using ::wmemset;
79
 
        using ::wprintf;
80
 
        using ::wscanf;
81
 
}
82
 
 
83
 
 
84
 
 
85
 
#endif
86