summaryrefslogtreecommitdiff
path: root/csvncgi/system.h
diff options
context:
space:
mode:
authorkx <kx@radix.pro>2023-03-24 03:55:33 +0300
committerkx <kx@radix.pro>2023-03-24 03:55:33 +0300
commitbfc1508d26c89c9a36d2d9a827fe2c4ed128884d (patch)
tree8d41298a7072a3e289e4912f77ece75cbea1bd54 /csvncgi/system.h
parentc836ae3775cf72f17e0b7e3792d156fdb389bee3 (diff)
downloadcsvn-ui-bfc1508d26c89c9a36d2d9a827fe2c4ed128884d.tar.xz
Version 0.1.4
Diffstat (limited to 'csvncgi/system.h')
-rw-r--r--csvncgi/system.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/csvncgi/system.h b/csvncgi/system.h
new file mode 100644
index 0000000..2a53c8f
--- /dev/null
+++ b/csvncgi/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 */