binana/profile/3.3.5a-windows-386/include/storm/big.h

27 lines
440 B
C
Raw Permalink Normal View History

2024-11-27 01:59:15 -05:00
#ifndef STORM_BIG_H
#define STORM_BIG_H
DECLARE_STRUCT(BigData);
DECLARE_STRUCT(BigBuffer);
DECLARE_STRUCT(BigStack);
#include "storm/array/uint8_t.h"
#include "storm/array/uint32_t.h"
struct BigBuffer {
TSGrowableArray_uint32_t m_data;
uint32_t m_offset;
};
struct BigStack {
BigBuffer m_buffer[16];
uint32_t m_used;
};
struct BigData {
BigBuffer m_primary;
BigStack m_stack;
TSGrowableArray_uint8_t m_output;
};
#endif