mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-13 20:12:26 +00:00
11 lines
216 B
C
11 lines
216 B
C
/* https://cirosantilli.com/linux-kernel-module-cheat#c */
|
|
|
|
#include <stdio.h>
|
|
|
|
int main(int argc, char **argv) {
|
|
size_t i;
|
|
for (i = 0; i < (size_t)argc; ++i)
|
|
printf("%s\n", argv[i]);
|
|
return 0;
|
|
}
|