This commit is contained in:
Jade Lovelace 2024-11-19 01:39:54 -08:00
parent 3df042f464
commit 77e018019a
5 changed files with 10 additions and 0 deletions

View file

@ -1,2 +1,3 @@
#pragma once
/** very important function */ /** very important function */
void showNyanCat(); void showNyanCat();

View file

@ -1,2 +1,3 @@
#pragma once
/** foo foo foo */ /** foo foo foo */
int frob(); int frob();

View file

@ -1,5 +1,9 @@
#include "lib2/foo.hh" #include "lib2/foo.hh"
#include "wat.hh"
void thingy() { void thingy() {
frob(); frob();
wat();
showNyanCat();
lolwut();
} }

2
src/nya.hh Normal file
View file

@ -0,0 +1,2 @@
#pragma once
int lolwut();

2
src/wat.hh Normal file
View file

@ -0,0 +1,2 @@
#pragma once
int wat();