home
·
contact
·
privacy
projects
/
plomrogue
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Added #include guards.
[plomrogue]
/
src
/
yx_uint16.h
1
#ifndef YX_UINT16_H
2
#define YX_UINT16_H
3
4
struct yx_uint16 {
5
uint16_t y;
6
uint16_t x; };
7
8
extern char yx_uint16_cmp (struct yx_uint16, struct yx_uint16);
9
10
#endif