Numworks Epsilon
1.4.1
Graphing Calculator Operating System
coordinate.h
Go to the documentation of this file.
1
#ifndef KANDINSKY_COORDINATE_H
2
#define KANDINSKY_COORDINATE_H
3
4
#include <
stdint.h
>
5
6
typedef
int16_t
KDCoordinate
;
7
8
static
inline
KDCoordinate
min(
KDCoordinate
x,
KDCoordinate
y) {
return
(x<y ? x : y); }
9
static
inline
KDCoordinate
max(
KDCoordinate
x,
KDCoordinate
y) {
return
(x>y ? x : y); }
10
11
#endif
KDCoordinate
int16_t KDCoordinate
Definition:
coordinate.h:6
int16_t
signed short int16_t
Definition:
stdint.h:10
stdint.h
epsilon
kandinsky
include
kandinsky
coordinate.h
Generated by
1.8.14