summaryrefslogtreecommitdiff
path: root/cgitcgi/system.h
diff options
context:
space:
mode:
authorkx <kx@radix.pro>2023-03-24 03:51:10 +0300
committerkx <kx@radix.pro>2023-03-24 03:51:10 +0300
commit05d292b208dfe01324826b4c87bbc4da3389a0d5 (patch)
treeb10a2269e9320785f3b61189e75f6778fa167986 /cgitcgi/system.h
parent40ab18a661ff6ada40e73969be293918d346a2f5 (diff)
downloadcgit-ui-05d292b208dfe01324826b4c87bbc4da3389a0d5.tar.xz
Version 0.1.7
Diffstat (limited to 'cgitcgi/system.h')
-rw-r--r--cgitcgi/system.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/cgitcgi/system.h b/cgitcgi/system.h
new file mode 100644
index 0000000..2a53c8f
--- /dev/null
+++ b/cgitcgi/system.h
@@ -0,0 +1,25 @@
+
+#ifndef __SYSTEM_H
+#define __SYSTEM_H
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+
+typedef void (*system_errfunc)( const char *fmt, ... );
+
+extern void system_error( const char *fmt, ... ) __attribute__((format (printf,1,2)));
+extern system_errfunc system_fatal; /* Default Fatal Error Function == system_error() */
+
+
+extern pid_t sys_exec_command( struct strbuf *sb, const char *cmd );
+extern int sys_wait_command( pid_t pid, struct strbuf *errmsg );
+
+
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* __SYSTEM_H */