This commit is contained in:
nora 2023-05-30 16:40:05 +02:00
parent 3e1215e870
commit 096d0e78ac
6 changed files with 44 additions and 10 deletions

12
helper.c Normal file
View file

@ -0,0 +1,12 @@
#include <stdio.h>
#include <stdint.h>
void print_var(uint8_t x) {
printf("%d", x);
}
void fn12_rs();
int main() {
fn12_rs();
}