SecBSD 1.3 -current: The Digital Resistance. A belief in the importance of privacy and the right to secure communication.
This commit is contained in:
commit
95114fbda2
91022 changed files with 33913249 additions and 0 deletions
36
lib/libc/locale/_def_time.c
Normal file
36
lib/libc/locale/_def_time.c
Normal file
|
@ -0,0 +1,36 @@
|
|||
/* $OpenBSD: _def_time.c,v 1.6 2016/05/23 00:05:15 guenther Exp $ */
|
||||
/*
|
||||
* Written by J.T. Conklin <jtc@netbsd.org>.
|
||||
* Public domain.
|
||||
*/
|
||||
|
||||
#include <locale.h>
|
||||
#include "localedef.h"
|
||||
|
||||
const _TimeLocale _DefaultTimeLocale =
|
||||
{
|
||||
{
|
||||
"Sun","Mon","Tue","Wed","Thu","Fri","Sat",
|
||||
},
|
||||
{
|
||||
"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday",
|
||||
"Friday", "Saturday"
|
||||
},
|
||||
{
|
||||
"Jan", "Feb", "Mar", "Apr", "May", "Jun",
|
||||
"Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
|
||||
},
|
||||
{
|
||||
"January", "February", "March", "April", "May", "June", "July",
|
||||
"August", "September", "October", "November", "December"
|
||||
},
|
||||
{
|
||||
"AM", "PM"
|
||||
},
|
||||
"%a %b %e %H:%M:%S %Y",
|
||||
"%m/%d/%y",
|
||||
"%H:%M:%S",
|
||||
"%I:%M:%S %p"
|
||||
};
|
||||
|
||||
const _TimeLocale *_CurrentTimeLocale = &_DefaultTimeLocale;
|
Loading…
Add table
Add a link
Reference in a new issue