X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=HACKING;h=6b5dfb0019308bae38803463418358e943f93930;hb=e065e67699abd831f38eb73467bc9c1ff940ef74;hp=5008b49ce2507502015486837f61517d4504094c;hpb=4f64cda2fd1594d6fcb419707e652d0811111086;p=oweals%2Fgnunet.git diff --git a/HACKING b/HACKING index 5008b49ce..6b5dfb001 100644 --- a/HACKING +++ b/HACKING @@ -6,7 +6,7 @@ include files: - _plugin: plugin definition - _protocol: structs used in network protocol - exceptions: - * GNUNET_config.h --- generated // FIXME: decapitalize + * gnunet_config.h --- generated * platform.h --- first included * plibc.h --- external library * gnunet_common.h --- fundamental routines @@ -66,3 +66,17 @@ gnunet-service-statistics gnunet-service-dv gnunet-service-dht gnunet-service-fs (or just lib?) + + + + +Coding style: +- GNU guidelines apply +- declare only one variable per line, so + + int i; + int j; + + instead of + + int i,j;