17 lines
192 B
Markdown
17 lines
192 B
Markdown
|
# lfutility
|
||
|
|
||
|
Utility code that does not fit anywhere else
|
||
|
|
||
|
## Structs
|
||
|
|
||
|
### Point
|
||
|
|
||
|
Representation of a point on a two dimensional grid
|
||
|
|
||
|
```c
|
||
|
typedef struct {
|
||
|
int x;
|
||
|
int y;
|
||
|
} Point;
|
||
|
```
|