add weak git integration

This commit is contained in:
2025-11-22 10:22:26 -05:00
parent fc2e477665
commit 54db089b71
9 changed files with 58 additions and 10 deletions

12
edef.h
View File

@@ -1,14 +1,18 @@
/* edef.h
*
* Program definitions
*
* Global variable definition
*
* written by vx-clutch
*/
#ifndef EDEF_H_
#define EDEF_H_
enum { SINGLE = 1, FULL = 2 };
/* Initialized global external declarations. */
#define NPAT 4096 /* number of bytes for path buffer */
extern int git;
/* Other constants declarations */
enum { SINGLE, FULL };
#endif /* EDEF_H_ */