View unicode-names.h
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Data from https://www.unicode.org/Public/UCD/latest/ucd/UnicodeData.txt | |
const char *UnicodeNames[] = { | |
[0x0000]="NULL", | |
[0x0001]="START OF HEADING", | |
[0x0002]="START OF TEXT", | |
[0x0003]="END OF TEXT", | |
[0x0004]="END OF TRANSMISSION", | |
[0x0005]="ENQUIRY", | |
[0x0006]="ACKNOWLEDGE", | |
[0x0007]="BELL", |
View unicode-enum.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* C++ enum of unicode character names. | |
* | |
* Because of the limits of C++ identifiers the following characters have been remapped: | |
* " " -> "_" | |
* "-" -> "_" | |
* "'" -> "" | |
* """ -> "" | |
* "." -> "" | |
* "+" -> "_" | |
* "/" -> "_" |
View quine.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<stdio.h> | |
void main(){char*s="#include<stdio.h>%cvoid main(){char*s=%c%s%c;printf(s,10,34,s,34);}";printf(s,10,34,s,34);} |