1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#include <stdio.h> struct Client { int id; const char *name; }; enum Mode { MODE_FAST, MODE_SLOW, }; static struct Client client_create(int id, const char *name) { return (struct Client){id, name}; }