summaryrefslogtreecommitdiff
path: root/rtclient/ticket.h
blob: cd782a32469d5db95647baff68b933c4666bfee3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef RTCLIENT_TICKET_H
#define RTCLIENT_TICKET_H

struct rtclient_ticketlist {
	unsigned int length;
	char *tickets[];
};

#ifdef __cplusplus
extern "C" {
#endif

	void rtclient_ticket_search(struct rtclient_ticketlist **listptr
			, const char *query);
	void rtclient_ticket_freelist(struct rtclient_ticketlist *list);

#ifdef __cplusplus
}
#endif

#endif // RTCLIENT_TICKET_H