aboutsummaryrefslogtreecommitdiff
path: root/C.wiki
diff options
context:
space:
mode:
Diffstat (limited to 'C.wiki')
-rw-r--r--C.wiki23
1 files changed, 23 insertions, 0 deletions
diff --git a/C.wiki b/C.wiki
index b96bb05..8818a5b 100644
--- a/C.wiki
+++ b/C.wiki
@@ -3,3 +3,26 @@
}}}
innehåller printf-strängar för `<stdint.h>`.
+
+== Universal character specifier ==
+TODO dubbelkolla namnet
+
+{{{c
+void o\u00f6o () {
+ printf("o with two dots\n");
+}
+
+int main () {
+ oöo();
+}
+}}}
+
+== Function name ==
+
+Each function _fname_ behaves as if the first line of its body
+wasbehaves as if the first line of its body was
+
+{{{c
+static const char __func__[] = "fname";
+}}}
+