Changes in uspace/lib/posix/pwd.c [3190e88:f215bb5] in mainline


Ignore:
File:
1 edited

Legend:

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

    r3190e88 rf215bb5  
    5151
    5252/**
    53  * Retrieve next broken-down entry from the user database.
    54  *
    5553 * Since HelenOS doesn't have user accounts, this always returns
    5654 * the same made-up entry.
    5755 *
    58  * @return Next user database entry or NULL if not possible. Since HelenOS
    59  *     doesn't have user accounts, this always returns the same made-up entry.
     56 * @return
    6057 */
    6158struct posix_passwd *posix_getpwent(void)
     
    7067
    7168/**
    72  * Rewind the user list.
     69 * "Rewind the user list".
    7370 */
    7471void posix_setpwent(void)
     
    8986 *
    9087 * @param name Name of the entry.
    91  * @return Either found entry or NULL if no such entry exists.
     88 * @return
    9289 */
    9390struct posix_passwd *posix_getpwnam(const char *name)
     
    106103 *
    107104 * @param name Name of the entry.
    108  * @param pwd Original structure.
    109  * @param buffer Buffer for the strings referenced from the result structure.
    110  * @param bufsize Length of the buffer.
    111  * @param result Where to store updated structure.
    112  * @return Zero on success (either found or not found, but without an error),
    113  *     non-zero error number if error occured.
     105 * @param pwd
     106 * @param buffer
     107 * @param bufsize
     108 * @param result
     109 * @return
    114110 */
    115111int posix_getpwnam_r(const char *name, struct posix_passwd *pwd,
     
    133129 *
    134130 * @param uid UID of the entry.
    135  * @return Either found entry or NULL if no such entry exists.
     131 * @return
    136132 */
    137133struct posix_passwd *posix_getpwuid(posix_uid_t uid)
     
    148144 *
    149145 * @param uid UID of the entry.
    150  * @param pwd Original structure.
    151  * @param buffer Buffer for the strings referenced from the result structure.
    152  * @param bufsize Length of the buffer.
    153  * @param result Where to store updated structure.
    154  * @return Zero on success (either found or not found, but without an error),
    155  *     non-zero error number if error occured.
     146 * @param pwd
     147 * @param buffer
     148 * @param bufsize
     149 * @param result
     150 * @return
    156151 */
    157152int posix_getpwuid_r(posix_uid_t uid, struct posix_passwd *pwd,
Note: See TracChangeset for help on using the changeset viewer.