printl.h 264 B

12345678910111213141516
  1. /** @file
  2. * @brief Routines to print a label according to a format.
  3. */
  4. #ifndef _PRINTL_H_
  5. #define _PRINTL_H_
  6. /**
  7. * @brief Print a label.
  8. * @param lab label to print.
  9. * @param out file handle to output on.
  10. */
  11. void labelPrint(Label *lab, FILE *out);
  12. #endif