diff options
| author | xHire <xhire@tuxportal.cz> | 2009-05-24 20:13:33 +0200 |
|---|---|---|
| committer | xHire <xhire@tuxportal.cz> | 2009-05-26 01:11:54 +0200 |
| commit | b992c007c186fddf31f67a7ed0bd5789cfb9b85e (patch) | |
| tree | 8afca953f70438207634bc9a1e073bbeafe47ad6 /src/base/string_length.h | |
| parent | 6ac111e0ed67187554ead8cccc241029465e8979 (diff) | |
Rectified the coding style in base .h files
Diffstat (limited to 'src/base/string_length.h')
| -rw-r--r-- | src/base/string_length.h | 24 |
1 files changed, 11 insertions, 13 deletions
diff --git a/src/base/string_length.h b/src/base/string_length.h index 021bfe8..43a6883 100644 --- a/src/base/string_length.h +++ b/src/base/string_length.h @@ -1,17 +1,15 @@ - #ifndef STR_LENGTH_H +#define STR_LENGTH_H -# define STR_LENGTH_H - -# include "main.h" +#include "main.h" -# define STR_SIZE 128 -# define STR_PROTO_SIZE 128 -# define STR_LOG_SIZE 256 -# define STR_NUM_SIZE 8 -# define STR_NAME_SIZE 32 -# define STR_PATH_SIZE 4096 -# define STR_FILE_NAME_SIZE 256 -# define STR_IP_SIZE 64 +#define STR_SIZE 128 +#define STR_PROTO_SIZE 128 +#define STR_LOG_SIZE 256 +#define STR_NUM_SIZE 8 +#define STR_NAME_SIZE 32 +#define STR_PATH_SIZE 4096 +#define STR_FILE_NAME_SIZE 256 +#define STR_IP_SIZE 64 -#endif +#endif /* STR_LENGTH_H */ |