This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struc int8 { | |
. db ? | |
} | |
struc int16 { | |
align 2 | |
. dw ? | |
} | |
struc int32 { | |
align 4 | |
. dd ? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef VECTOR_H_ | |
#define VECTOR_H_ | |
#include <stdint.h> | |
#include <stddef.h> | |
#include <stdlib.h> | |
#define VECTOR_INIT {0} |