fsck: treat a NUL in a tag header as an error
[gitweb.git] / run-command.h
index 275d35c442ac575f8f3f40aeb915cd0d341c776f..12bb26c2a6155750203babfec47b08e8bde0ad27 100644 (file)
@@ -47,6 +47,7 @@ struct child_process {
 
 #define CHILD_PROCESS_INIT { NULL, ARGV_ARRAY_INIT, ARGV_ARRAY_INIT }
 void child_process_init(struct child_process *);
+void child_process_clear(struct child_process *);
 
 int start_command(struct child_process *);
 int finish_command(struct child_process *);
@@ -119,5 +120,6 @@ struct async {
 
 int start_async(struct async *async);
 int finish_async(struct async *async);
+int in_async(void);
 
 #endif