Changeset 664fc031 in mainline for uspace/lib/posix/time.c


Ignore:
Timestamp:
2012-08-22T18:53:13Z (12 years ago)
Author:
Maurizio Lombardi <m.lombardi85@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
2e6293b
Parents:
077dad2
Message:

rename the new time functions to the time_* naming scheme

File:
1 edited

Legend:

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

    r077dad2 r664fc031  
    8787    struct tm *restrict result)
    8888{
    89         int rc = utctime2tm(*timer, result);
     89        int rc = time_utc2tm(*timer, result);
    9090        if (rc != EOK) {
    9191                errno = rc;
     
    153153    char *restrict buf)
    154154{
    155         tm2str(timeptr, buf);
     155        time_tm2str(timeptr, buf);
    156156        return buf;
    157157}
     
    184184char *posix_ctime_r(const time_t *timer, char *buf)
    185185{
    186         int r = localtime2str(*timer, buf);
     186        int r = time_local2str(*timer, buf);
    187187        if (r != EOK) {
    188188                errno = r;
Note: See TracChangeset for help on using the changeset viewer.