16 lines
193 B
C
16 lines
193 B
C
#ifndef RECORD_H
|
|
#define RECORD_H
|
|
|
|
#include <inttypes.h>
|
|
|
|
typedef uint32_t record_key_t;
|
|
|
|
typedef struct {
|
|
record_key_t key;
|
|
double x;
|
|
double y;
|
|
} record_t;
|
|
|
|
#endif /* RECORD_H */
|
|
|