esc

Externally Scriptable Editor

git clone git://mccd.space/esc

fuse_ipc.h (212B)

      1 #ifndef FUSE_IPC_H
      2 #define FUSE_IPC_H
      3 #include "editor.h"
      4 
      5 typedef struct FuseIPC FuseIPC;
      6 FuseIPC	*fuse_ipc_start(Editor *ed);	/* returns NULL on failure (non-fatal) */
      7 void	 fuse_ipc_stop(FuseIPC *ipc);
      8 #endif