ctime_r.c\time\src - musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
path: root/src/time/ctime_r.c
blob: 3e24aa681beea2263d5350ba6c8f7473c09fe89e (plain) (blame)
1
2
3
4
5
6
7
#include <time.h>
char *ctime_r(const time_t *t, char *buf)
{
	struct tm tm, *tm_p = localtime_r(t, &tm);
	return tm_p ? asctime_r(tm_p, buf) : 0;
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月17日 05:55:25 +0000

AltStyle によって変換されたページ (->オリジナル) /