File: io.h

package info (click to toggle)
scheme48 1.9.2-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 18,332 kB
  • sloc: lisp: 88,907; ansic: 87,519; sh: 3,224; makefile: 771
file content (20 lines) | stat: -rw-r--r-- 722 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * Part of Scheme 48 1.9.  See file COPYING for notices and license.
 *
 * Authors: Richard Kelsey, Jonathan Rees, Mike Sperber
 */

#include <stdio.h>

extern FILE	*ps_open_input_file(char *, long *);
extern FILE	*ps_open_output_file(char *, long *);
extern long	ps_close(FILE *);
extern char	ps_read_char(FILE *, char *, long *, char);
extern long	ps_read_integer(FILE *, char *, long *);
extern long	ps_write_char(char, FILE *);
extern long	ps_write_integer(long, FILE *);
extern long	ps_write_string(char *, FILE *);
extern long	ps_read_block(FILE *, char *, long, char *, long *);
extern long	ps_write_block(FILE *, char *, long);
extern char	*ps_error_string(long);
extern void	ps_error(char *, long count, ...);