Skip to content

Instantly share code, notes, and snippets.

View marsgpl's full-sized avatar
🔴
Recording

Iurii Belobeev marsgpl

🔴
Recording
View GitHub Profile
@marsgpl
marsgpl / co.c
Created August 3, 2025 13:09
lightweight thread-friendly coroutines for arm64 and x86_64
#include <stdlib.h>
#include <inttypes.h>
// log stub
#include <stdio.h>
#include <errno.h>
#include <string.h>
#define log_warning(fmt, ...) { \
fprintf(stderr, "Warning: " fmt "\n" __VA_OPT__(,) __VA_ARGS__); \