Skip to content

Instantly share code, notes, and snippets.

View maxencejded's full-sized avatar
🐢
Learning slowly

Lazy Mojito maxencejded

🐢
Learning slowly
View GitHub Profile
@mu578
mu578 / rotate_forward.c
Last active February 12, 2023 19:25
rotate_forward.c
#include <stdio.h>
#include <stdlib.h>
# define stl_scope_begin do {
# define stl_scope_end break; } while (0)
# define stl_basic_swap(_Tp, __a, __b) \
stl_scope_begin \
_Tp __stl_c = (__a); \
(__a) = (__b); \