wangzhengquan
2020-10-10 3865746d3c0db2978134470fde6cfcd734abfef7
include/usgcommon/usg_typedef.h
@@ -21,6 +21,11 @@
#endif
#ifdef _WIN32
#define PATH_SEPERATOR   "\\"
#else
#define PATH_SEPERATOR   "/"
#endif
/* Default file permissions are DEF_MODE & ~DEF_UMASK */
#define DEF_MODE   S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH
@@ -39,7 +44,7 @@
#define MIN(a,b)  ((a) < (b) ? (a) : (b))
#define MAX(a,b)  ((a) > (b) ? (a) : (b))
#define BLANK "\t\n\v\f\r "
/* Misc constants */
#define   MAXLINE    1024  /* Max text line length */
#define MAXBUF   8192  /* Max I/O buffer size */