Changeset 4cf8ca6 in mainline for uspace/lib/posix/locale.c
- Timestamp:
- 2011-07-20T21:52:22Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- aa5acd47
- Parents:
- 102a729
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/locale.c
r102a729 r4cf8ca6 30 30 * @{ 31 31 */ 32 /** @file 32 /** @file Locale-specific definitions. 33 33 */ 34 34 … … 41 41 #include "limits.h" 42 42 #include "string.h" 43 44 // TODO: documentation 43 45 44 46 struct __posix_locale { … … 73 75 }; 74 76 77 /** 78 * 79 * @param category 80 * @param locale 81 * @return 82 */ 75 83 char *posix_setlocale(int category, const char *locale) 76 84 { … … 83 91 } 84 92 93 /** 94 * 95 * @return 96 */ 85 97 struct posix_lconv *posix_localeconv(void) 86 98 { … … 89 101 } 90 102 103 /** 104 * 105 * @param locobj 106 * @return 107 */ 91 108 posix_locale_t posix_duplocale(posix_locale_t locobj) 92 109 { … … 104 121 } 105 122 123 /** 124 * 125 * @param locobj 126 */ 106 127 void posix_freelocale(posix_locale_t locobj) 107 128 { … … 109 130 } 110 131 132 /** 133 * 134 * @param category_mask 135 * @param locale 136 * @param base 137 * @return 138 */ 111 139 posix_locale_t posix_newlocale(int category_mask, const char *locale, 112 140 posix_locale_t base) … … 129 157 } 130 158 131 posix_locale_t posix_uselocale (posix_locale_t newloc) 159 /** 160 * 161 * @param newloc 162 * @return 163 */ 164 posix_locale_t posix_uselocale(posix_locale_t newloc) 132 165 { 133 166 // TODO
Note:
See TracChangeset
for help on using the changeset viewer.