9 lines
158 B
C
9 lines
158 B
C
#ifndef MYERS_H
|
|
#define MYERS_H
|
|
|
|
#include <string.h>
|
|
#include "action_list.h"
|
|
|
|
ActionList* myers_diff(char**, char**, uint64_t, uint64_t);
|
|
|
|
#endif // MYERS_H
|