University stuff.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

libpas2100.c 166B

12345678910111213141516
  1. #include <stdio.h>
  2. void write_char (int c)
  3. {
  4. printf("%c", c);
  5. }
  6. void write_int (int n)
  7. {
  8. printf("%d", n);
  9. }
  10. void write_string (char *s)
  11. {
  12. printf("%s", s);
  13. }