4coder/4ed_edit.h

34 lines
354 B
C
Raw Normal View History

2019-02-08 10:03:48 +00:00
/*
* Mr. 4th Dimention - Allen Webster
*
* 07.02.2019
*
* Types used for edit operations
*
*/
// TOP
#if !defined(FRED_EDIT_H)
#define FRED_EDIT_H
struct Edit{
char *str;
i32 length;
Range range;
};
struct Edit_Array{
Edit *vals;
i32 count;
};
struct Edit_Behaviors{
b32 do_not_post_to_history;
};
#endif
// BOTTOM