diff options
| author | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2019-09-18 07:12:18 +0800 |
|---|---|---|
| committer | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2019-09-18 07:12:18 +0800 |
| commit | a47c5c334245e2c93edd37be156d9560843deca6 (patch) | |
| tree | dcb9ab53945038737afeb746f3312196beedfc57 /rtclient/ticket.h | |
| parent | bca38d6c015727c66248cd59908591806165ac83 (diff) | |
More consistent namespace
Change RT_ and rt_ to RTCLIENT_ and rtclient_ respectively
Diffstat (limited to 'rtclient/ticket.h')
| -rw-r--r-- | rtclient/ticket.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/rtclient/ticket.h b/rtclient/ticket.h index e21508b..cd782a3 100644 --- a/rtclient/ticket.h +++ b/rtclient/ticket.h @@ -1,7 +1,7 @@ #ifndef RTCLIENT_TICKET_H #define RTCLIENT_TICKET_H -struct rt_ticketlist { +struct rtclient_ticketlist { unsigned int length; char *tickets[]; }; @@ -10,8 +10,9 @@ struct rt_ticketlist { extern "C" { #endif - void rtclient_ticket_search(struct rt_ticketlist **listptr, const char *query); - void rtclient_ticket_freelist(struct rt_ticketlist *list); + void rtclient_ticket_search(struct rtclient_ticketlist **listptr + , const char *query); + void rtclient_ticket_freelist(struct rtclient_ticketlist *list); #ifdef __cplusplus } |