mirror of
https://github.com/Mercantec-GHC/h4-projekt-gruppe-0-sm.git
synced 2025-04-27 16:24:07 +02:00
9 lines
119 B
C
9 lines
119 B
C
#include <stdint.h>
|
|
#include <stdio.h>
|
|
|
|
int64_t print_int(int64_t value)
|
|
{
|
|
printf("%ld\n", value);
|
|
return 0;
|
|
}
|