This commit is contained in:
Imbus 2023-12-02 07:12:56 +01:00
commit 5069b41630
7 changed files with 69 additions and 0 deletions

3
lib/fib.h Normal file
View file

@ -0,0 +1,3 @@
#pragma once
int fib(int n);

3
lib/greet.h Normal file
View file

@ -0,0 +1,3 @@
#pragma once
void greet(const char *name);