repositories
/
Project_algorithmic_C.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
White space cleanup
[Project_algorithmic_C.git]
/
lib
/
utils.h
1
#ifndef UTILS_H
2
#define UTILS_H
3
4
#include
"macros.h"
5
6
void
swap_int
(
int
*
v1
,
int
*
v2
);
7
void
swap_ptr
(
void
*
v1
,
void
*
v2
);
8
9
#endif
/* UTILS_H */