Overview
Returns a boolean indicating whether the application server running the function is running in client mode.
Usage
int is_client()
Results
1 / 0
Examples
int zi_client;
zi_client = is_client();
printf("IS CLIENT? %d\n", zi_client);
1 person found this helpful