blob: 2de58b869372f671504fe02ff3199622ff750946 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef EDIT_H
#define EDIT_H
#include <stdbool.h>
#include <stddef.h>
#include "util/macros.h"
#include "view.h"
void do_insert(View *view, const char *buf, size_t len) NONNULL_ARG(1);
char *do_delete(View *view, size_t len, bool sanity_check_newlines) NONNULL_ARGS;
char *do_replace(View *view, size_t del, const char *buf, size_t ins) NONNULL_ARGS_AND_RETURN;
#endif
|