1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-03 01:18:10 +03:00

Mention typedef struct in README.Coding

This commit is contained in:
Volker Lendecke 2009-11-14 12:55:41 +01:00
parent f4cf1c56a2
commit 8e2bbb8a33

View File

@ -233,3 +233,11 @@ new code should adhere to the following conventions:
* Booleans are of type "bool" (not BOOL) * Booleans are of type "bool" (not BOOL)
* Boolean values are "true" and "false" (not True or False) * Boolean values are "true" and "false" (not True or False)
* Exact width integers are of type [u]int[8|16|32|64]_t * Exact width integers are of type [u]int[8|16|32|64]_t
Typedefs
--------
Samba tries to avoid "typedef struct { .. } x_t;", we always use
"struct x { .. };". We know there are still those typedefs in the code,
but for new code, please don't do that.