]> andersk Git - libyaml.git/blobdiff - src/yaml_private.h
Update upstream source from tag 'upstream/0.2.2'
[libyaml.git] / src / yaml_private.h
index eb722077dfc01d72883c228883749ea72463bb2c..b3351c41655c2b37306269565ac8a97c934defd0 100644 (file)
@@ -1,5 +1,5 @@
 #if HAVE_CONFIG_H
-#include <config.h>
+#include "config.h"
 #endif
 
 #include <yaml.h>
@@ -171,14 +171,14 @@ yaml_string_join(
  * Check the octet at the specified position.
  */
 
-#define CHECK_AT(string,octet,offset)                                           \
+#define CHECK_AT(string,octet,offset)                   \
     ((string).pointer[offset] == (yaml_char_t)(octet))
 
 /*
  * Check the current octet in the buffer.
  */
 
-#define CHECK(string,octet) CHECK_AT((string),(octet),0)
+#define CHECK(string,octet) (CHECK_AT((string),(octet),0))
 
 /*
  * Check if the character at the specified position is an alphabetical
This page took 0.04588 seconds and 4 git commands to generate.