From 6f40b81eb07247aa4d6336bf25b18a831649bc8b Mon Sep 17 00:00:00 2001 From: Mirek Jahoda Date: Oct 23 2017 14:42:25 +0000 Subject: Update C-Language.xml - Title Case --- diff --git a/en-US/C-Language.xml b/en-US/C-Language.xml index 8f6f74d..12b0845 100644 --- a/en-US/C-Language.xml +++ b/en-US/C-Language.xml @@ -2,14 +2,14 @@
- The core language + The Core Language C provides no memory safety. Most recommendations in this section deal with this aspect of the language.
- Undefined behavior + Undefined Behavior Some C constructs are defined to be undefined by the C standard. This does not only mean that the standard does not describe @@ -32,7 +32,7 @@
- Recommendations for pointers and array handling + Recommendations for Pointers and Array Handling Always keep track of the size of the array you are working with. Often, code is more obviously correct when you keep a pointer @@ -75,7 +75,7 @@
- Recommendations for integer arithmetic + Recommendations for Integer Arithmetic Overflow in signed integer arithmetic is undefined. This means that it is not possible to check for overflow after it happened, @@ -174,7 +174,7 @@
- Global variables + Global Variables Global variables should be avoided because they usually lead to thread safety hazards. In any case, they should be declared