14 lines
203 B
C
14 lines
203 B
C
#ifndef RECORD_H_
|
|
#define RECORD_H_
|
|
|
|
typedef struct {
|
|
double x;
|
|
double y;
|
|
} record_t;
|
|
|
|
|
|
double record_length(const record_t a);
|
|
double record_compare(const record_t a, const record_t b);
|
|
|
|
#endif
|