This commit is contained in:
2025-10-23 20:48:44 -04:00
parent 122ce49d23
commit 8da521f782
8 changed files with 29 additions and 25 deletions

View File

@@ -1,8 +0,0 @@
GCK yait - TODO
Todo:
* Use the /*: something()@does something :*/ syntax for detecting entries
* Output html
end of file TODO

View File

@@ -1,5 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<title>DOCUMENT</title>
</head>

17
build-aux/test.c Normal file
View File

@@ -0,0 +1,17 @@
#include <stdio.h>
/*-
int foo(int x)
Addes 34 to the provided integer x.
-*/
int foo(int x)
{
return x + 34;
}
int main()
{
printf("foo: %d\n", foo(35));
return 0;
}