Пример #1
0
void
cleanup(void) {
	while(clients)
		destroyclient(clients);
	g_free(cookiefile);
	g_free(scriptfile);
	g_free(stylefile);
}
Пример #2
0
void
destroywin(GtkWidget* w, Client *c) {
	destroyclient(c);
}
Пример #3
0
void
cleanup(void) {
	while(clients)
		destroyclient(clients);
}
Пример #4
0
Файл: surf.c Проект: sr/surf
void
destroywin(GtkWidget* w, gpointer d) {
    Client *c = (Client *)d;

    destroyclient(c);
}