summary refs log tree commit diff
path: root/www/text.causal.agency/003-pleasant-c.7
blob: 16030b7e27fff876c4951237ce0368563f5f9b59 (plain) (blame)
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
.Dd September 30, 2018
.Dt PLEASANT-C 7
.Os "Causal Agency"
.
.Sh NAME
.Nm Pleasant C
.Nd it's good, actually
.
.Sh DESCRIPTION
I've been writing a lot of C lately
and actually find it very pleasant.
I want to talk about some of its ergonomic features.
These are C99 features unless otherwise noted.
.
.Ss Initializer syntax
Struct and union initializer syntax
is well generalized.
Designators can be chained,
making initializing nested structs easy,
and all uninitialized fields are zeroed.
.
.Bd -literal -offset indent
struct {
	struct pollfd fds[2];
} loop = {
	.fds[0].fd = STDIN_FILENO,
	.fds[1].fd = STDOUT_FILENO,
	.fds[0].events = POLLIN,
	.fds[1].events = POLLOUT,
};
.Ed
.
.Ss Variable-length arrays
VLAs can be multi-dimensional,
which can avoid manual stride multiplications
needed to index a flat
.Xr malloc 3 Ap d
array.
.
.Bd -literal -offset indent
uint8_t glyphs[len][height][width];
fread(glyphs, height * width, len, stdin);
.Ed
.
.Ss Incomplete array types
The last field of a struct can be an
.Dq incomplete
array type,
which means it doesn't have a length.
A variable amount of space for the struct can be
.Xr malloc 3 Ap d ,
or the struct can be used as
a sort of pointer with fields.
.
.Bd -literal -offset indent
struct Line {
	enum Filter type;
	uint8_t data[];
} *line = &png.data[1 + lineSize()];
.Ed
.
.Ss Anonymous struct and union fields (C11)
Members of structs or unions
which are themselves structs or unions
can be unnamed.
In that case,
each of the inner fields
is treated as a member of the outer struct or union.
This makes working with tagged unions nicer.
.
.Bd -literal -offset indent
struct Message {
	enum { Foo, Bar } type;
	union {
		uint8_t foo;
		uint32_t bar;
	};
} msg = { .type = Foo, .foo = 0xFF };
.Ed
.
.Ss Static assert (C11)
Assertions can be made at compile time.
Most useful for checking sizes of structs.
.
.Bd -literal -offset indent
static_assert(13 == sizeof(struct PNGHeader), "PNG IHDR size");
.Ed
.
.Ss Leading-break switch
This one is just an odd style choice
I came across that C happens to allow.
To prevent accidental fall-through
in switch statements,
you can put breaks before the case labels.
.
.Bd -literal -offset indent
while (0 < (opt = getopt(argc, argv, "h:w:"))) {
	switch (opt) {
		break; case 'h': height = optarg;
		break; case 'w': width = optarg;
		break; default:  return EX_USAGE;
	}
}
.Ed
.
.Sh AUTHORS
.An Mt june@causal.agency
.
.Pp
This document is produced from
.Xr mdoc 7
source available from
.Lk https://git.causal.agency/src/tree/www/text.causal.agency
.
.Sh CAVEATS
This isn't meant to be advice.
It's just how I like to write C,
and I don't
.Dq ship
software in C.
&follow=1'>Use time_t for save signatureJune McEnroe It's actually more likely to be 64-bit than size_t anyway, and it eliminates some helper functions. Also don't error when reading an empty save file. 2020-02-11Set self.nick to * initiallyJune McEnroe Allows removing a bunch of checks that self.nick is set, and it's what the server usually calls you before registration. Never highlight notices as mentions. 2020-02-11Define ColorCap instead of hardcoding 100June McEnroe 2020-02-11Move hash to top of chat.hJune McEnroe 2020-02-11Move base64 out of chat.hJune McEnroe 2020-02-11Move XDG_SUBDIR out of chat.hJune McEnroe 2020-02-11Fix whois idle unit calculationJune McEnroe Rookie mistake. 2020-02-11Cast towupper to wchar_tJune McEnroe For some reason it takes and returns wint_t... 2020-02-11Cast set but unused variables to voidJune McEnroe 2020-02-11Declare strlcatJune McEnroe 2020-02-11Check if VDSUSP existsJune McEnroe 2020-02-11Fix completeReplace iterationJune McEnroe 2020-02-11Use pkg(8) to configure on FreeBSDJune McEnroe 2020-02-11Remove legacy codeJune McEnroe 2020-02-11Add INSTALLING section to READMEJune McEnroe