Changeset 664fc031 in mainline for uspace/lib/c/include/sys/time.h


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/c/include/sys/time.h

    r077dad2 r664fc031  
    8181
    8282extern time_t mktime(struct tm *tm);
    83 extern int utctime2tm(const time_t time, struct tm *result);
    84 extern int utctime2str(const time_t time, char *buf);
    85 extern void tm2str(const struct tm *timeptr, char *buf);
    86 extern int localtime2tm(const time_t time, struct tm *result);
    87 extern int localtime2str(const time_t time, char *buf);
     83extern int time_utc2tm(const time_t time, struct tm *result);
     84extern int time_utc2str(const time_t time, char *buf);
     85extern void time_tm2str(const struct tm *timeptr, char *buf);
     86extern int time_local2tm(const time_t time, struct tm *result);
     87extern int time_local2str(const time_t time, char *buf);
    8888extern double difftime(time_t time1, time_t time0);
    8989extern size_t strftime(char *restrict s, size_t maxsize,
Note: See TracChangeset for help on using the changeset viewer.