Implementing XML

This commit is contained in:
2024-07-08 16:56:54 +05:30
commit d8d3c80ad4
95 changed files with 9150 additions and 0 deletions

26
include/command.h Normal file
View File

@@ -0,0 +1,26 @@
#ifndef __COMMAND_H
#define __COMMAND_H
#include <stddef.h>
enum {
CMD_SUCCESS = 0,
CMD_FAIL_EXEC,
CMD_FAIL_CMD
};
/*
* Defined in scan.c source file.
*/
int Multi_Git_Project_scan(char* str);
int Git_Project_scan(char* str);
int Multi_Git_Project_rm(char* str);
int Git_Project_rm(char* str);
int
command_exec(int argc, char** argv);
int
command_parse_and_exec(char* str);
#endif