2022-06-26 02:23:53 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2022-06-26 22:55:56 +02:00
|
|
|
#include "../tthimage.h"
|
2022-06-26 02:23:53 +02:00
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
Image_print_version(2);
|
2022-06-26 22:55:56 +02:00
|
|
|
Image_print_sizeof_structs("foo");
|
|
|
|
|
2022-06-26 02:23:53 +02:00
|
|
|
return 0;
|
|
|
|
}
|