Hash :
49a55c42
Author :
Thomas de Grivel
Date :
2024-08-19T12:41:04
#include <stdio.h>
#include <stddef.h>
#include <assert.h>
#include "../http/types.h"
void print_offsets() {
}
int main (void) {
printf("offsetof(s_fact_w, subject) = %zu\n",
offsetof(s_fact_w, subject));
printf("offsetof(s_fact_w, predicate) = %zu\n",
offsetof(s_fact_w, predicate));
printf("offsetof(s_fact_w, object) = %zu\n",
offsetof(s_fact_w, object));
printf("offsetof(s_fact_w, id) = %zu\n",
offsetof(s_fact_w, id));
printf("sizeof(s_fact_w) = %zu\n",
sizeof(s_fact_w));
return 0;
}