mirror of
https://git.wownero.com/wowlet/wowlet.git
synced 2024-08-15 01:03:14 +00:00
133700160a
Co-Authored-By: tobtoht <thotbot@protonmail.com>
14 lines
158 B
C
14 lines
158 B
C
#ifdef __CLASSIC_C__
|
|
int main()
|
|
{
|
|
int ac;
|
|
char* av[];
|
|
#else
|
|
int main(int ac, char* av[])
|
|
{
|
|
#endif
|
|
if (ac > 1000) {
|
|
return *av[0];
|
|
}
|
|
return 0;
|
|
}
|