summaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
Diffstat (limited to 'share')
-rw-r--r--share/misc/contrib8
1 files changed, 8 insertions, 0 deletions
diff --git a/share/misc/contrib b/share/misc/contrib
index 6f93fb7..1560f37 100644
--- a/share/misc/contrib
+++ b/share/misc/contrib
@@ -87,6 +87,14 @@ a pointer, like, for example:
uint8_t *ptr = NULL;
...
+--
+The preferred pointer style is:
+
+void *p = ...;
+
+-- Not:
+
+void* p = ...;
-- or if you have for example, some sort of counter value
that must have a start: