wds
struct wds *p = malloc(sizeof(struct wds));
p->next = wds;
wds = p;
struct wds *p;
for (p = wds; p != NULL; p = p->next)
p = malloc(sizeof(struct wds));
p->next = wds;
wds = p;
struct wds *p, **pp;
for (pp = &wds; (p = *pp) != NULL; pp = &p->next)
struct wds *p, **pp;
for (pp = &wds; (p = *pp) != NULL; pp = &p->next)
wds_vap_create(const char *parent, struct wds *p)
struct wds *next;
static struct wds *wds;
static int wds_vap_create(const char *ifname, struct wds *);
static void mkweekdays(struct weekdays * wds);
struct weekdays wds;
mkweekdays(&wds);
wdss, wds.names[6], wdss, wds.names[0],
wdss, wds.names[1], wdss, wds.names[2],
wdss, wds.names[3], wdss, wds.names[4],
wdss, wds.names[5]);
struct weekdays wds;
mkweekdays(&wds);
wprintf(L"%.2ls", wds.names[i]);
mkweekdays(struct weekdays *wds)
wmemset(wds->names[i], L'\0', 4);
wds->names[i][0] = L' ';
wcsncat(wds->names[i], buf, len);
wcsncat(wds->names[i], L" ", 1);