/** * utils.c * Various utilities. */ // +---------+------------------------------------------------------- // | Headers | // +---------+ #include #include "utils.h" // +--------------------+-------------------------------------------- // | Exported Functions | // +--------------------+ void do_all_the_work (int i, double d, char *str) { printf("i=%d, d=%lf, str=\"%s\"\n", i, d, str); } // do_all_the_work