15 lines
219 B
C
15 lines
219 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
#include <stdint.h>
|
|
|
|
#include "../tthimage.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
Image_print_version(2);
|
|
Image_print_sizeof_structs("foo");
|
|
|
|
return 0;
|
|
}
|