summaryrefslogtreecommitdiff
path: root/include/file-output.h
blob: 446de2710189feea885325cf00269f878595f1c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# file-output.h: declarations for file reading.
#
# Copyright (C) 1992, 2011 Free Software Foundation, Inc.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
#


#ifndef FILE_OUTPUT_H
#define FILE_OUTPUT_H

#include <stdio.h>
#include "types.h"



/* Write some number of bytes to the file F.  The FILENAME argument
   is passed to perror(3), if the write fails, and then the program is
   halted.  */
extern void put_byte (one_byte, FILE *f, string filename);
extern void put_two (two_bytes, FILE *, string);
extern void put_three (four_bytes, FILE *, string);
extern void put_four (four_bytes, FILE *, string);
extern void put_n_bytes (unsigned n, address, FILE *, string);

/* We assume the number is already in two's complement, and so we merely 
   have to output the bits.  */
#define put_signed_byte put_byte
#define put_signed_two put_two
#define put_signed_three put_three
#define put_signed_four put_four

#endif /* not FILE_OUTPUT_H */