feat: initial commit
This commit is contained in:
commit
c18a85f1cc
7 changed files with 153 additions and 0 deletions
19
include/myers.h
Normal file
19
include/myers.h
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
#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
|
||||
Loading…
Add table
Add a link
Reference in a new issue