Displaying 2 results from an estimated 2 matches for "c_syntax".
Did you mean:
20syntax
2010 Oct 26
2
What is '' in wine sources.
Hi, I am looking at wine sources, and I wonder what is '' (in string.c for example). Twosingle quotes I mean. It's not the same as ' '. Should this compile?
2009 Aug 19
1
[PATCH libguestfs] avoid build failure due to Haskell keyword clash
...9;, which will cause some conflicts in the generated code" name;
+
+ (* List Haskell, OCaml and C keywords here.
+ * http://www.haskell.org/haskellwiki/Keywords
+ * http://caml.inria.fr/pub/docs/manual-ocaml/lex.html#operator-char
+ * http://en.wikipedia.org/wiki/C_syntax#Reserved_keywords
+ * Formatted via: cat c haskell ocaml|sort -u|grep -v _ \
+ * |perl -pe 's/(.*)/"$1";/'|fmt -70
+ * Omitting the OCaml reserved word, "val", is ok,
+ * and saves us from renaming several parameters.
+ *)
+...