~ubuntu-branches/debian/lenny/fpc/lenny

« back to all changes in this revision

Viewing changes to packages/base/libc/wctypeh.inc

  • Committer: Bazaar Package Importer
  • Author(s): Mazen Neifer, Torsten Werner, Mazen Neifer
  • Date: 2008-05-17 17:12:11 UTC
  • mfrom: (3.1.9 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080517171211-9qi33xhd9evfa0kg
Tags: 2.2.0-dfsg1-9
[ Torsten Werner ]
* Add Mazen Neifer to Uploaders field.

[ Mazen Neifer ]
* Moved FPC sources into a version dependent directory from /usr/share/fpcsrc
  to /usr/share/fpcsrc/${FPCVERSION}. This allow installing more than on FPC
  release.
* Fixed far call issue in compiler preventing building huge binearies.
  (closes: #477743)
* Updated building dependencies, recomennded and suggested packages.
* Moved fppkg to fp-utils as it is just a helper tool and is not required by
  compiler.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
 
3
 
const
4
 
   WEOF = $ffffffff;
5
 
 
6
 
type
7
 
 
8
 
   Pwctype_t = ^wctype_t;
9
 
   wctype_t = dword;
10
 
   Pwctrans_t = ^wctrans_t;
11
 
   wctrans_t = ^int32_t;
12
 
 
13
 
function iswalpha(__wc:wint_t):longint;cdecl;external clib name 'iswalpha';
14
 
function iswcntrl(__wc:wint_t):longint;cdecl;external clib name 'iswcntrl';
15
 
function iswdigit(__wc:wint_t):longint;cdecl;external clib name 'iswdigit';
16
 
function iswgraph(__wc:wint_t):longint;cdecl;external clib name 'iswgraph';
17
 
function iswlower(__wc:wint_t):longint;cdecl;external clib name 'iswlower';
18
 
function iswprint(__wc:wint_t):longint;cdecl;external clib name 'iswprint';
19
 
function iswpunct(__wc:wint_t):longint;cdecl;external clib name 'iswpunct';
20
 
function iswspace(__wc:wint_t):longint;cdecl;external clib name 'iswspace';
21
 
function iswupper(__wc:wint_t):longint;cdecl;external clib name 'iswupper';
22
 
function iswxdigit(__wc:wint_t):longint;cdecl;external clib name 'iswxdigit';
23
 
function iswblank(__wc:wint_t):longint;cdecl;external clib name 'iswblank';
24
 
function wctype(__property:Pchar):wctype_t;cdecl;external clib name 'wctype';
25
 
function iswctype(__wc:wint_t; __desc:wctype_t):longint;cdecl;external clib name 'iswctype';
26
 
function towlower(__wc:wint_t):wint_t;cdecl;external clib name 'towlower';
27
 
function towupper(__wc:wint_t):wint_t;cdecl;external clib name 'towupper';
28
 
function towctrans(__wc:wint_t; __desc:wctrans_t):wint_t;cdecl;external clib name 'towctrans';
29
 
 
30
 
function __iswalnum_l(__wc:wint_t; __locale:__locale_t):longint;cdecl;external clib name '__iswalnum_l';
31
 
function __iswalpha_l(__wc:wint_t; __locale:__locale_t):longint;cdecl;external clib name '__iswalpha_l';
32
 
function __iswcntrl_l(__wc:wint_t; __locale:__locale_t):longint;cdecl;external clib name '__iswcntrl_l';
33
 
function __iswdigit_l(__wc:wint_t; __locale:__locale_t):longint;cdecl;external clib name '__iswdigit_l';
34
 
function __iswgraph_l(__wc:wint_t; __locale:__locale_t):longint;cdecl;external clib name '__iswgraph_l';
35
 
function __iswlower_l(__wc:wint_t; __locale:__locale_t):longint;cdecl;external clib name '__iswlower_l';
36
 
function __iswprint_l(__wc:wint_t; __locale:__locale_t):longint;cdecl;external clib name '__iswprint_l';
37
 
function __iswpunct_l(__wc:wint_t; __locale:__locale_t):longint;cdecl;external clib name '__iswpunct_l';
38
 
function __iswspace_l(__wc:wint_t; __locale:__locale_t):longint;cdecl;external clib name '__iswspace_l';
39
 
function __iswupper_l(__wc:wint_t; __locale:__locale_t):longint;cdecl;external clib name '__iswupper_l';
40
 
function __iswxdigit_l(__wc:wint_t; __locale:__locale_t):longint;cdecl;external clib name '__iswxdigit_l';
41
 
function __iswblank_l(__wc:wint_t; __locale:__locale_t):longint;cdecl;external clib name '__iswblank_l';
42
 
function __wctype_l(__property:Pchar; __locale:__locale_t):wctype_t;cdecl;external clib name '__wctype_l';
43
 
function __iswctype_l(__wc:wint_t; __desc:wctype_t; __locale:__locale_t):longint;cdecl;external clib name '__iswctype_l';
44
 
function __towlower_l(__wc:wint_t; __locale:__locale_t):wint_t;cdecl;external clib name '__towlower_l';
45
 
function __towupper_l(__wc:wint_t; __locale:__locale_t):wint_t;cdecl;external clib name '__towupper_l';
46
 
function __wctrans_l(__property:Pchar; __locale:__locale_t):wctrans_t;cdecl;external clib name '__wctrans_l';
47
 
function __towctrans_l(__wc:wint_t; __desc:wctrans_t; __locale:__locale_t):wint_t;cdecl;external clib name '__towctrans_l';
48
 
 
49
 
 
50
 
{ ---------------------------------------------------------------------
51
 
    Borland compatibility types
52
 
  ---------------------------------------------------------------------}
53
 
 
54
 
// Type