source: trunk/minix/commands/yap/output.h@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 1.2 KB
Line 
1/* Copyright (c) 1985 Ceriel J.H. Jacobs */
2
3/* $Header: /cvsup/minix/src/commands/yap/output.h,v 1.1.1.1 2005/04/21 14:55:40 beng Exp $ */
4
5# ifndef _OUTPUT_
6# define PUBLIC extern
7# else
8# define PUBLIC
9# endif
10
11PUBLIC int _ocnt;
12PUBLIC char *_optr;
13
14#define putch(ch) if (1) {if (--_ocnt <= 0) flush(); *_optr++ = (ch);} else
15
16VOID flush();
17/*
18 * void flush()
19 *
20 * Write the output buffer to the screen
21 */
22
23VOID nflush();
24/*
25 * void nflush()
26 *
27 * Clear output buffer, but do not write it
28 */
29
30int fputch();
31/*
32 * int fputch(c)
33 * int c; The character to be printed
34 *
35 * Put character "c" in output buffer and flush if necessary.
36 */
37
38VOID putline();
39/*
40 * void putline(s)
41 * char *s; The string to be printed
42 *
43 * Put string "s" in output buffer etc...
44 */
45
46VOID cputline();
47/*
48 * void cputline(s)
49 * char *s; The string to be handled
50 *
51 * Put string "s" in the output buffer, expanding control characters
52 */
53
54VOID prnum();
55/*
56 * void prnum(n)
57 * long n; The number to be printed
58 *
59 * print the number "n", using putch.
60 */
61
62char *getnum();
63/*
64 * char *getnum(n)
65 * long n; The number to be converted to a string
66 *
67 * Convert a number to a string and return a pointer to it.
68 */
69# undef PUBLIC
Note: See TracBrowser for help on using the repository browser.