mirror of
https://github.com/feather-wallet/feather.git
synced 2024-11-16 09:17:36 +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;
|
|
}
|