aboutsummaryrefslogtreecommitdiff
path: root/HACKING
diff options
context:
space:
mode:
Diffstat (limited to 'HACKING')
-rw-r--r--HACKING14
1 files changed, 14 insertions, 0 deletions
diff --git a/HACKING b/HACKING
index 5008b49ce..5d8badcbb 100644
--- a/HACKING
+++ b/HACKING
@@ -66,3 +66,17 @@ gnunet-service-statistics
66gnunet-service-dv 66gnunet-service-dv
67gnunet-service-dht 67gnunet-service-dht
68gnunet-service-fs (or just lib?) 68gnunet-service-fs (or just lib?)
69
70
71
72
73Coding style:
74- GNU guidelines apply
75- declare only one variable per line, so
76
77 int i;
78 int j;
79
80 instead of
81
82 int i,j;