kolibrios/programs/system/shell/cmd/cmd_echo.c

7 lines
74 B
C
Raw Normal View History

int cmd_echo(char text[])
{
printf("%s\n\r", text);
return TRUE;
}