mirror of
https://github.com/autc04/Retro68.git
synced 2025-01-05 22:32:37 +00:00
10 lines
189 B
C
10 lines
189 B
C
typedef char *array[10];
|
|
|
|
static array digits_names = {"zero", "one", "two", "three", "four",
|
|
"five", "six", "seven", "eight", "nine"};
|
|
|
|
void *foo (void)
|
|
{
|
|
return digits_names;
|
|
}
|