Stardew Engine
Loading...
Searching...
No Matches
LatinMacros.h
Go to the documentation of this file.
1#ifndef LATINMACROS_H
2#define LATINMACROS_H
3
4/*
5 Jim Marshall - 2025
6 Macros to make the C programming language be in latin
7*/
8
9/* control flow */
10#define si if
11#define aliter else
12#define vimen switch
13#define casu case
14#define defaltam default
15#define dum while
16#define fac do
17#define enim for
18#define interruptio break
19#define perge continue
20#define revenio return
21#define ite goto
22
23/* types */
24#define duplex double
25#define supernato float
26#define parvus short
27#define longus long
28#define coniunctio union
29#define signati signed
30#define insignitus unsigned
31#define vacuum void
32
33/* other */
34#define volatilis volatile
35#define staticus static
36#define tabula register
37#define magnitudinem sizeof
38
39/* long forms of logic operators */
40#define et &&
41#define aut ||
42#define non !
43
44#endif