aboutsummaryrefslogtreecommitdiff
path: root/C.wiki
blob: 8818a5bdf49a1db06098f5b9e3e099f31d2fc70d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{{{c
#include <inttypes.h>
}}}

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";
}}}