Impl basic ws binary proto with data and execution state manipulation
This commit is contained in:
13
inc/sized_ptr.h
Normal file
13
inc/sized_ptr.h
Normal file
@@ -0,0 +1,13 @@
|
||||
#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__
|
||||
Reference in New Issue
Block a user