mirror of
https://github.com/neovim/neovim
synced 2025-07-16 01:01:49 +00:00
It's probably not worth adding the C test files to regular formatting as they're pretty much never touched, but ensuring the files are formatted according to our standards and getting rid of warnings is a cheap one-time fix.
10 lines
144 B
C
10 lines
144 B
C
#include <stdio.h>
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
for (int i = 1; i < argc; i++) {
|
|
printf("arg%d=%s;", i, argv[i]);
|
|
}
|
|
return 0;
|
|
}
|