Initial import.

This commit is contained in:
2025-11-29 16:57:01 -08:00
commit 46c7a4e8a2
116 changed files with 80806 additions and 0 deletions

15
AppendBuffer.h Normal file
View File

@@ -0,0 +1,15 @@
/*
* AppendBuffer.h - selector header to choose GapBuffer or PieceTable
*/
#ifndef KTE_APPENDBUFFER_H
#define KTE_APPENDBUFFER_H
#ifdef KTE_USE_PIECE_TABLE
#include "PieceTable.h"
using AppendBuffer = PieceTable;
#else
#include "GapBuffer.h"
using AppendBuffer = GapBuffer;
#endif
#endif // KTE_APPENDBUFFER_H