index
:
ING1-Workshops.git
main
Ateliers ING1 2024-2025
Marcellus
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
rushs
/
tinyprintf
/
pointer_swap
/
pointer_swap.c
blob: 32ceb847ca76c62b6c1c05abd422647d7736609f (
plain
)
1
2
3
4
5
6
void pointer_swap(int **a, int **b) { int *tmp = *a; *a = *b; *b = tmp; }