mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-23 08:24:16 +00:00
17 lines
230 B
C++
17 lines
230 B
C++
// Sample for python unit tests
|
|
// Not part of the decomp
|
|
|
|
#include <stdio.h>
|
|
|
|
int no_offset_comment()
|
|
{
|
|
static int dummy = 123;
|
|
return -1;
|
|
}
|
|
|
|
// FUNCTION: TEST 0xdeadbeef
|
|
void regular_ole_function()
|
|
{
|
|
printf("hi there");
|
|
}
|