constants.h (367B)
1 #ifndef GOUT_GIT_CONSTANTS_H_ 2 #define GOUT_GIT_CONSTANTS_H_ 3 4 /* Maximum length of a hex-encoded OID string, including null terminator. 5 * (Matches GIT_OID_MAX_HEXSIZE + 1) */ 6 #define GOUT_OID_MAX_SIZE 41 7 8 /* Maximum length of a file mode string, including null terminator. 9 * (e.g. "m---------") */ 10 #define GOUT_FILEMODE_MAX_SIZE 11 11 12 #endif // GOUT_GIT_CONSTANTS_H_