libflint/docs/utility.md

17 lines
190 B
Markdown
Raw Permalink Normal View History

# utility
2022-03-31 00:02:36 +00:00
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;
```