- cosmetic fixes for the _Bool patch
- adding tests for _Bool & stdbool
diff --git a/tests/c_files/year.c b/tests/c_files/year.c
index c0f583d..7489671 100644
--- a/tests/c_files/year.c
+++ b/tests/c_files/year.c
@@ -1,6 +1,11 @@
 #include <stdio.h>

 #include <string.h>

 #include <stdlib.h>

+#include <stdbool.h>

+

+/* C99 bools */

+_Bool just_a_flag = false;

+bool another_flag = true;

 

 void convert(int thousands, int hundreds, int tens, int ones)

 {

diff --git a/tests/test_c_parser.py b/tests/test_c_parser.py
index 93000fe..63b4c6f 100644
--- a/tests/test_c_parser.py
+++ b/tests/test_c_parser.py
@@ -204,6 +204,9 @@
         self.assertEqual(self.get_decl('unsigned int a;'), 
             ['Decl', 'a', ['TypeDecl', ['IdentifierType', ['int', 'unsigned']]]])
 
+        self.assertEqual(self.get_decl('_Bool a;'),
+            ['Decl', 'a', ['TypeDecl', ['IdentifierType', ['_Bool']]]])
+
         self.assertEqual(self.get_decl('char* string;'), 
             ['Decl', 'string', 
                 ['PtrDecl', ['TypeDecl', ['IdentifierType', ['char']]]]])