Home
last modified time | relevance | path

Searched refs:day_first (Results 1 – 7 of 7) sorted by relevance

/dragonfly/usr.bin/calendar/
H A Ddates.h58 struct event *event_add(struct cal_day *dp, bool day_first, bool variable,
H A Ddates.c176 event_add(struct cal_day *dp, bool day_first, bool variable, in event_add() argument
190 (day_first ? "%e %b" : "%b %e"), &tm); in event_add()
/dragonfly/contrib/libarchive/cpio/
H A Dcpio.h75 int day_first; /* true if locale prefers day/mon */ member
H A Dcpio.c1198 fmt = cpio->day_first ? "%d %b %Y" : "%b %d %Y"; in list_item_verbose()
1200 fmt = cpio->day_first ? "%d %b %H:%M" : "%b %d %H:%M"; in list_item_verbose()
1204 fmt = cpio->day_first ? "%e %b %Y" : "%b %e %Y"; in list_item_verbose()
1206 fmt = cpio->day_first ? "%e %b %H:%M" : "%b %e %H:%M"; in list_item_verbose()
/dragonfly/contrib/libarchive/tar/
H A Dutil.c745 fmt = bsdtar->day_first ? DAY_FMT " %b %Y" : "%b " DAY_FMT " %Y";
747 fmt = bsdtar->day_first ? DAY_FMT " %b %H:%M" : "%b " DAY_FMT " %H:%M";
H A Dbsdtar.h68 char day_first; /* show day before month in -tv output */ member
H A Dbsdtar.c207 bsdtar->day_first = (*nl_langinfo(D_MD_ORDER) == 'd'); in main()