mirror of
https://github.com/Fennix-Project/Userspace.git
synced 2025-07-11 23:29:24 +00:00
Update echo
This commit is contained in:
11
apps/base/echo/echo.c
Normal file
11
apps/base/echo/echo.c
Normal file
@ -0,0 +1,11 @@
|
||||
#include <stdio.h>
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
for (int i = 1; i < argc; i++)
|
||||
{
|
||||
printf("%s ", argv[i]);
|
||||
}
|
||||
printf("\n");
|
||||
return 0;
|
||||
}
|
Reference in New Issue
Block a user