Skip to content

Instantly share code, notes, and snippets.

@Boostibot
Boostibot / win32_stack_trace.c
Last active February 2, 2025 23:51
win32 stack trace
#include <stdint.h>
typedef struct {
char function[256]; //mangled or unmangled function name
char module[256]; //mangled or unmangled module name ie. name of dll/executable
char file[256]; //file or empty if not supported
int64_t line; //0 if not supported
} Platform_Stack_Trace_Entry;
//Captures the current stack frame pointers.
//Saves up to stack_size pointres into the stack array and returns the number of
@Boostibot
Boostibot / Antonyms.md
Created August 22, 2020 10:25 — forked from maxtruxa/Antonyms.md
A list of common terms used in programming and their respective antonyms.

Antonym List

Note: The table headings (positive/negative) are not necessarily meaningful.

Positive Negative
acquire release
add remove (e.g. an item), subtract (arithmetic)
advance retreat
allocate deallocate (correct), free (common)
allow deny