testing
This commit is contained in:
parent
958c383f85
commit
84dcb63ea7
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -5,12 +5,15 @@
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdbool.h>
|
||||
|
||||
#include "support.h"
|
||||
|
||||
typedef struct {
|
||||
unsigned int size; /* byte count of payload data */
|
||||
unsigned char data[1]; /* payload data, size as needed */
|
||||
typedef struct ObjRef{
|
||||
bool brokenHeart;
|
||||
struct ObjRef *forward_pointer;
|
||||
unsigned int size;
|
||||
unsigned char data[1];
|
||||
} *ObjRef;
|
||||
|
||||
|
||||
|
||||
Binary file not shown.
Binary file not shown.
3
objref.c
3
objref.c
@ -1,9 +1,10 @@
|
||||
#ifndef OBJREF
|
||||
#define OBJREF
|
||||
|
||||
#include <stdbool.h>
|
||||
|
||||
typedef struct ObjRef{
|
||||
bool brokenHeart;
|
||||
// struct ObjRef *forward_pointer;
|
||||
unsigned int size;
|
||||
unsigned char data[1];
|
||||
} *ObjRef;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user