> For the complete documentation index, see [llms.txt](https://applezulab.netdpi.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://applezulab.netdpi.net/linux-prog/copy-of-page-1-3.md).

# 取得時間

```c
#include <time.h>

/* Error: return NULL 
 * Or return the string of time
 */
char * get_time(void)
{
    time_t t;

    if( time(&t) < 0 )
        return NULL;

    return ctime( (const time_t *) &t );

}
```
