From 069301a603ad07338179bafed0c35b6fe3b372f2 Mon Sep 17 00:00:00 2001 From: Mitja Felicijan Date: Thu, 22 Jan 2026 02:24:44 +0100 Subject: Better arg parsing --- tests/depth_test/level0.c | 1 + tests/depth_test/sub/level1.c | 1 + tests/test.c | 5 +++++ 3 files changed, 7 insertions(+) create mode 100644 tests/depth_test/level0.c create mode 100644 tests/depth_test/sub/level1.c (limited to 'tests') diff --git a/tests/depth_test/level0.c b/tests/depth_test/level0.c new file mode 100644 index 0000000..a872dab --- /dev/null +++ b/tests/depth_test/level0.c @@ -0,0 +1 @@ +void level0() {} diff --git a/tests/depth_test/sub/level1.c b/tests/depth_test/sub/level1.c new file mode 100644 index 0000000..e4fd738 --- /dev/null +++ b/tests/depth_test/sub/level1.c @@ -0,0 +1 @@ +void level1() {} diff --git a/tests/test.c b/tests/test.c index 4326f11..1d5fd3f 100644 --- a/tests/test.c +++ b/tests/test.c @@ -30,3 +30,8 @@ int main() { hello(); return 0; } + +// Case sensitivity tests +void FooBar() {} +void foobar() {} +void FOOBAR() {} -- cgit v1.2.3