19 lines
231 B
C
19 lines
231 B
C
#ifndef MYERS_H
|
|
#define MYERS_H
|
|
|
|
#include <stdint.h>
|
|
|
|
typedef enum {
|
|
INSERT,
|
|
DELETE
|
|
} ActionType;
|
|
|
|
typedef struct {
|
|
ActionType type;
|
|
uint64_t line_original;
|
|
uint64_t line_changed;
|
|
} Action;
|
|
|
|
|
|
|
|
#endif // MYERS_H
|