diff options
Diffstat (limited to 'doc/manual/example1/function.c')
-rw-r--r-- | doc/manual/example1/function.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/manual/example1/function.c b/doc/manual/example1/function.c new file mode 100644 index 0000000..9a84189 --- /dev/null +++ b/doc/manual/example1/function.c @@ -0,0 +1,3 @@ +int one_plus(int a) { + return 1 + a; +} |