mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-07-23 02:50:29 +00:00
Initial import
This commit is contained in:
commit
c91b3c5006
14915 changed files with 590219 additions and 0 deletions
34
libc/time/kmonthnameshort.S
Normal file
34
libc/time/kmonthnameshort.S
Normal file
|
@ -0,0 +1,34 @@
|
|||
#if 0
|
||||
/*─────────────────────────────────────────────────────────────────╗
|
||||
│ To the extent possible under law, Justine Tunney has waived │
|
||||
│ all copyright and related or neighboring rights to this file, │
|
||||
│ as it is written in the following disclaimers: │
|
||||
│ • http://unlicense.org/ │
|
||||
│ • http://creativecommons.org/publicdomain/zero/1.0/ │
|
||||
╚─────────────────────────────────────────────────────────────────*/
|
||||
#endif
|
||||
#include "libc/macros.inc"
|
||||
|
||||
/ Type #1:
|
||||
/ - Indexable C-String Array
|
||||
/ - extern const char kMonthNameShort[12][4];
|
||||
/ Type #2:
|
||||
/ - Double-NUL Terminated String
|
||||
/ - extern const char kMonthNameShort[];
|
||||
.section .rodata,"aS",@progbits
|
||||
kMonthNameShort:
|
||||
.ascin "Jan",4
|
||||
.ascin "Feb",4
|
||||
.ascin "Mar",4
|
||||
.ascin "Apr",4
|
||||
.ascin "May",4
|
||||
.ascin "Jun",4
|
||||
.ascin "Jul",4
|
||||
.ascin "Aug",4
|
||||
.ascin "Sep",4
|
||||
.ascin "Oct",4
|
||||
.ascin "Nov",4
|
||||
.ascin "Dec",4
|
||||
.byte 0
|
||||
.endobj kMonthNameShort,globl
|
||||
.previous
|
Loading…
Add table
Add a link
Reference in a new issue