Changeset 4cf8ca6 in mainline for uspace/lib/posix/locale.c


Ignore:
Timestamp:
2011-07-20T21:52:22Z (13 years ago)
Author:
Petr Koupy <petr.koupy@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
aa5acd47
Parents:
102a729
Message:

Various minor commenting (no change in functionality).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/posix/locale.c

    r102a729 r4cf8ca6  
    3030 * @{
    3131 */
    32 /** @file
     32/** @file Locale-specific definitions.
    3333 */
    3434
     
    4141#include "limits.h"
    4242#include "string.h"
     43
     44// TODO: documentation
    4345
    4446struct __posix_locale {
     
    7375};
    7476
     77/**
     78 *
     79 * @param category
     80 * @param locale
     81 * @return
     82 */
    7583char *posix_setlocale(int category, const char *locale)
    7684{
     
    8391}
    8492
     93/**
     94 *
     95 * @return
     96 */
    8597struct posix_lconv *posix_localeconv(void)
    8698{
     
    89101}
    90102
     103/**
     104 *
     105 * @param locobj
     106 * @return
     107 */
    91108posix_locale_t posix_duplocale(posix_locale_t locobj)
    92109{
     
    104121}
    105122
     123/**
     124 *
     125 * @param locobj
     126 */
    106127void posix_freelocale(posix_locale_t locobj)
    107128{
     
    109130}
    110131
     132/**
     133 *
     134 * @param category_mask
     135 * @param locale
     136 * @param base
     137 * @return
     138 */
    111139posix_locale_t posix_newlocale(int category_mask, const char *locale,
    112140    posix_locale_t base)
     
    129157}
    130158
    131 posix_locale_t posix_uselocale (posix_locale_t newloc)
     159/**
     160 *
     161 * @param newloc
     162 * @return
     163 */
     164posix_locale_t posix_uselocale(posix_locale_t newloc)
    132165{
    133166        // TODO
Note: See TracChangeset for help on using the changeset viewer.