diff options
Diffstat (limited to 'doc/workflow.txt')
-rw-r--r-- | doc/workflow.txt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/doc/workflow.txt b/doc/workflow.txt index ee4afb95..a829192b 100644 --- a/doc/workflow.txt +++ b/doc/workflow.txt @@ -21,6 +21,18 @@ int * a; instead of
int *a;
+- Don't explicitly cast malloc, but do
+
+ptr = malloc (sizeof(*ptr) * len);
+or
+ptr = malloc (sizeof *ptr * len);
+
+- When checking for invalid pointers use
+
+if (ptr == NULL)
+instead of
+if (!ptr)
+
3. Development workflow
Git is used as a version tooling for the code. Releases are identified
|