Changeset 1284
- Timestamp:
- Mar 7, 2004, 1:18:10 AM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/include/sys/locale.h
-
Property cvs2svn:cvs-rev
changed from
1.4
to1.5
r1283 r1284 39 39 #define __ASCII 0x8000 /* In standard ASCII set. */ 40 40 41 #ifdef __INTERNAL_DEFS42 43 #include <uconv.h>44 45 /* This structure keeps the time formatting rules. */46 struct __locale_time47 {48 char *smonths [12]; /* Short month names */49 char *lmonths [12]; /* Long month names */50 char *swdays [7]; /* Short weekday names */51 char *lwdays [7]; /* Long weekday names */52 char *date_time_fmt; /* Date and time format */53 char *date_fmt; /* Date format */54 char *time_fmt; /* Time format */55 char *am, *pm; /* AM and PM strings */56 };57 58 41 /* Locale information structure. */ 59 42 struct lconv … … 77 60 char p_sign_posn; /* positioning of non-negative monetary sign */ 78 61 char n_sign_posn; /* positioning of negative monetary sign */ 62 /** @todo C99 63 char int_n_cs_precedes 64 char int_n_sep_by_space 65 char int_n_sign_posn 66 char int_p_cs_precedes 67 char int_p_sep_by_space 68 char int_p_sign_posn 69 */ 70 }; 71 72 73 #ifdef __INTERNAL_DEFS 74 75 #include <uconv.h> 76 77 /* This structure keeps the time formatting rules. */ 78 struct __locale_time 79 { 80 char *smonths [12]; /* Short month names */ 81 char *lmonths [12]; /* Long month names */ 82 char *swdays [7]; /* Short weekday names */ 83 char *lwdays [7]; /* Long weekday names */ 84 char *date_time_fmt; /* Date and time format */ 85 char *date_fmt; /* Date format */ 86 char *time_fmt; /* Time format */ 87 char *am, *pm; /* AM and PM strings */ 79 88 }; 80 89 -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.