8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-22 15:23:03 +01:00

An additional related to previous commit

This commit is contained in:
aafemt 2003-08-15 10:11:25 +00:00
parent e9ed4a2b91
commit 4ca32b84ec

View File

@ -34,3 +34,6 @@ exceed one line.
scratch (on all available platforms).
- Always end source files, including headers, with a newline.
- Prefer C++ style for comments
- Use abstract datatypes (UCHAR, SSHORT, ULONG etc) instead of generic
ones (unsigned char, short, unsigned long resp) because generic types
can be changed unexpectedly (long int become 64 bits for example).