docs(action_list): small comments

This commit is contained in:
lisk77 2025-08-17 17:08:14 +02:00
parent e8338d011d
commit f7043cc03a
2 changed files with 5 additions and 0 deletions

View file

@ -11,12 +11,14 @@ typedef enum {
DELETE
} ActionType;
// Represents a deletion or insertion into the files text
typedef struct {
ActionType type;
uint64_t line_original;
uint64_t line_changed;
} Action;
// Dynamic array of Actions
typedef struct {
Action* actions;
uint64_t capacity;