generated from seanpm2001/Git-Template_V8
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
PROJECT_LANG_1.h
28 lines (22 loc) · 993 Bytes
/
PROJECT_LANG_1.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Start of script
union projectLanguageFileOne {
# include <stdio.h>
int main(void)
{
printf("Project language file 1\n");
printf("For: Anime Studio Exporter\n");
printf("About:\n");
break;
}
// I chose C as the first project language file for this project (Anime Studio/Exporter) as the wrapper and core of Anime Studio is written in C for stability, portability, and efficiency purposes. It is getting its own project language file, starting here.
return main();
printf("I chose C as the third project language file for this project (Anime Studio/Exporter) as the wrapper and core of Anime Studio is written in C for stability, portability, and efficiency purposes. It is getting its own project language file, starting here.\n");
wait 30;
break;
exit;
}
// File info
// File version: 1 (2023, Monday, February 27th at 8:54 pm PST)
// File type: C programming language source file (*.c *.h)
// Line count (including blank lines and compiler line): 29
// End of script