File nut/crt/asctime.c


Included Files


Preprocessor definitions

#define ASCTIME_FMT "%.3s %.3s%3d %2.2d:%2.2d:%2.2d %4d\n"

#define ASCTIME_BUF_SIZE 26


Local Variables

buf_asctime
static char buf_asctime[26]
Used in: asctime()  

Global Function asctime()

char* asctime ( const struct _tm* timeptr )
Prototyped in: nut/include/time.h
Calls: asctime_r() nut/crt/asctime.c
Called by: ctime() nut/crt/asctime.c
References Variables: buf_asctime nut/crt/asctime.c

Global Function asctime_r()

char* asctime_r ( const struct _tm* timeptr, char* buf )
Prototyped in: nut/include/time.h
Calls: strcpy() nut/c/string/strcpy.c
  sprintf()
Called by: asctime() nut/crt/asctime.c
  ctime_r() nut/crt/asctime.c

Global Function ctime()

char* ctime ( const time_t* const timep )
Prototyped in: nut/include/time.h
Calls: asctime() nut/crt/asctime.c
  localtime()
Called by: NutAppMain() nut/app/tls_client/tls_client.c

Global Function ctime_r()

char* ctime_r ( const time_t* const timep, char* buf )
Prototyped in: nut/include/time.h
Calls: asctime_r() nut/crt/asctime.c
  localtime_r()