~ubuntu-branches/ubuntu/vivid/emscripten/vivid

« back to all changes in this revision

Viewing changes to system/include/xlocale.h

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2013-05-02 13:11:51 UTC
  • Revision ID: package-import@ubuntu.com-20130502131151-q8dvteqr1ef2x7xz
Tags: upstream-1.4.1~20130504~adb56cb
ImportĀ upstreamĀ versionĀ 1.4.1~20130504~adb56cb

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
#ifndef _XLOCALE_H_
 
3
#define _XLOCALE_H_
 
4
 
 
5
#include <string.h>
 
6
#include <locale.h>
 
7
 
 
8
#ifdef __cplusplus
 
9
extern "C" {
 
10
#endif
 
11
 
 
12
long long strtoll_l(const char *start, char **end, int base, locale_t loc);
 
13
unsigned long long strtoull_l(const char *start, char **end, int base, locale_t loc);
 
14
double strtold_l(const char *start, char **end, locale_t loc);
 
15
 
 
16
int strcoll_l(const char *s1, const char *s2, locale_t locale);
 
17
int wcscoll_l(const wchar_t *ws1, const wchar_t *ws2, locale_t locale);
 
18
 
 
19
size_t strxfrm_l(char *s1, const char *s2, size_t n, locale_t locale);
 
20
size_t wcsxfrm_l(wchar_t *ws1, const wchar_t *ws2, size_t n, locale_t locale);
 
21
 
 
22
int isxdigit_l(int c, locale_t locale);
 
23
int isdigit_l(int c, locale_t locale);
 
24
int toupper_l(int c, locale_t locale);
 
25
int tolower_l(int c, locale_t locale);
 
26
 
 
27
int iswspace_l(wint_t wc, locale_t locale);
 
28
int iswupper_l(wint_t wc, locale_t locale);
 
29
int iswlower_l(wint_t wc, locale_t locale);
 
30
int iswprint_l(wint_t wc, locale_t locale);
 
31
int iswcntrl_l(wint_t wc, locale_t locale);
 
32
int iswalpha_l(wint_t wc, locale_t locale);
 
33
int iswdigit_l(wint_t wc, locale_t locale);
 
34
int iswpunct_l(wint_t wc, locale_t locale);
 
35
int iswblank_l(wint_t wc, locale_t locale);
 
36
int iswxdigit_l(wint_t wc, locale_t locale);
 
37
int towupper_l(wint_t wc, locale_t locale);
 
38
int towlower_l(wint_t wc, locale_t locale);
 
39
 
 
40
size_t strftime_l(char *s, size_t maxsize, const char *format, const struct tm *timeptr, locale_t locale);
 
41
 
 
42
#ifdef __cplusplus
 
43
}
 
44
#endif
 
45
 
 
46
#endif /* _LOCALE_H_ */
 
47