/* util.h - Prototypes for utility functions used be example applications. */ #ifndef _UTIL_H /* { */ #define _UTIL_H void printl(const char *); void print_thread_id_message(void); void print_state_message(unsigned int); void itoa_q(long value, char *letters, int len, int radix); #endif /* } _UTIL_H */ /* end of file - util.h */