First push after merge, split and enhance both zOS and zputa

This commit is contained in:
Philip Smart
2020-04-25 22:48:39 +01:00
commit 25466f1db8
5072 changed files with 2191180 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
#ifndef __EDITOR_H_
#define __EDITOR_H_
#include "basic_utils.h"
extern char* prgStore;
extern short prgSize;
void resetEditor(void);
void initEditor(char* prgBody, short progSpaceSize);
char readLine();
prgline* findLine(short num);
void injectLine(char* s, short num);
char editorSave(void);
char editorLoad(void);
char editorLoadParsed(void);
#endif