GolemED/src/commands/print.🗿
2023-07-26 14:18:45 +02:00

11 lines
191 B
Plaintext

cmd_print(text, args)
{
if ([text + LOCATION_LENGTH] == 0)
{
putstr("Empty file\n");
return 1;
}
putstr([[text + LOCATION_ARRAY] + [text + LOCATION_CURRENT_LINE]]);
putchar('\n');
}