14 lines
191 B
C
14 lines
191 B
C
#ifndef __SIZED_PTR_H__
|
|
#define __SIZED_PTR_H__
|
|
|
|
#include <stdlib.h>
|
|
|
|
typedef struct {
|
|
void* ptr;
|
|
size_t size;
|
|
size_t allocatedSize;
|
|
} SizedPtr;
|
|
|
|
|
|
#endif //ifndef __SIZED_PTR_H__
|