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 <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
#include <stdbool.h>
|
||||||
|
|
||||||
#include "support.h"
|
#include "support.h"
|
||||||
|
|
||||||
typedef struct {
|
typedef struct ObjRef{
|
||||||
unsigned int size; /* byte count of payload data */
|
bool brokenHeart;
|
||||||
unsigned char data[1]; /* payload data, size as needed */
|
struct ObjRef *forward_pointer;
|
||||||
|
unsigned int size;
|
||||||
|
unsigned char data[1];
|
||||||
} *ObjRef;
|
} *ObjRef;
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
3
objref.c
3
objref.c
@ -1,9 +1,10 @@
|
|||||||
#ifndef OBJREF
|
#ifndef OBJREF
|
||||||
#define OBJREF
|
#define OBJREF
|
||||||
|
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
|
|
||||||
typedef struct ObjRef{
|
typedef struct ObjRef{
|
||||||
|
bool brokenHeart;
|
||||||
|
// struct ObjRef *forward_pointer;
|
||||||
unsigned int size;
|
unsigned int size;
|
||||||
unsigned char data[1];
|
unsigned char data[1];
|
||||||
} *ObjRef;
|
} *ObjRef;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user