/
githubmirror
/
postgres
Обзор
Документация
Войти
/
githubmirror
/
postgres
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/tools/pg_bsd_indent/tests/struct.0
23 строки
254 B
Tom Lane
Make pg_bsd_indent add a space between comma and period.
13 май 2026, 17:17
13 май 2026, 17:17
b518ba4
Код
Авторство
О чём код?
/* $FreeBSD$ */ int f(struct x *a); /* See r303485 */ void t(void) { static const struct { int a; int b; } c[] = { { D, E }, { F, G } }; } void u(struct x a) { int b; struct y c = (struct y *)&a; } static struct foo f = { .a = 1,.b=2 };