xref: /llvm-project/lldb/test/Shell/Process/Inputs/echo.c (revision acc56e55feee61fc0038bc132a94e54ce56ced98)
1*acc56e55SJonas Devlieghere #include <stdio.h>
2*acc56e55SJonas Devlieghere 
main(int argc,char ** argv)3*acc56e55SJonas Devlieghere int main(int argc, char **argv) {
4*acc56e55SJonas Devlieghere   for (int i = 0; i < argc; ++i)
5*acc56e55SJonas Devlieghere     printf("%s\n", argv[i]);
6*acc56e55SJonas Devlieghere }
7