From 3f4b9050dc316fcf05c8704bba326940886ad28b Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Thu, 24 Mar 2011 08:12:15 +0100 Subject: [PATCH] docs/HACKING: correct formating on unordered lists. --- docs/HACKING | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/HACKING b/docs/HACKING index a3bc3bb..42c7cd9 100644 --- a/docs/HACKING +++ b/docs/HACKING @@ -79,13 +79,13 @@ a pointer to a struct list Naming ------ - * Never use CamelCase. UPPERCASE for constants and lowercase for variables,functions,macros. words is separated by underscore. + - Never use CamelCase. UPPERCASE for constants and lowercase for variables,functions,macros. words is separated by underscore. - * API functions (that have a prototype in a header file) should be prefixed with the header filename. + - API functions (that have a prototype in a header file) should be prefixed with the header filename. One exception exist and that is when the functionality is realy lowlevel and/or generic enough that it would be redundant to include a prefix. an example of this is a fatal() or die() function that may be prototyped in misc.h. - * Headerguard defines is written like __PATH_TO_THIS_HEADER_H + - Headerguard defines is written like __PATH_TO_THIS_HEADER_H Documentation -------------