This commit is contained in:
Lysann Tranvouez 2025-10-02 20:51:25 +02:00
parent 5e76138b53
commit 327dfb0cb7
5 changed files with 34 additions and 34 deletions

11
tests/lib_function.c Normal file
View file

@ -0,0 +1,11 @@
// Copyright (c) Lysann Tranvouez. All rights reserved.
#include "lib_function.h"
int libFunctionCounter = 0;
int libFunction()
{
libFunctionCounter++;
return 42;
}