source: buchla-68k/libcio/fwrite.c@ 6262b5c

Last change on this file since 6262b5c was 6262b5c, checked in by Thomas Lopatic <thomas@…>, 7 years ago

Added include files for global functions and variables.

  • Property mode set to 100644
File size: 1.1 KB
Line 
1/*
2 =============================================================================
3 fwrite.c -- write a stream file
4 Version 3 -- 1987-07-09 -- D.N. Lynx Crowe
5 =============================================================================
6*/
7
8#include "all.h"
9
10/*
11 =============================================================================
12 fwrite(buffer, size, number, stream) -- write 'number' items of sixe
13 'size' bytes from 'buffer' onto 'stream'. Returns the number of items
14 written. If 'number' or 'size' is negative, nothing is written, and
15 0 is returned. EOF may cause the last item written to be imcomplete.
16 Check with feof() to detect an EOF condition. Use ferror() to check
17 for error conditions.
18 =============================================================================
19*/
20
21int16_t fwrite(int8_t *buffer, int16_t size, int16_t number, FILE *stream)
22{
23 register int16_t i, j;
24
25 if (size < 0) /* check size for validity */
26 return(0);
27
28 if (number < 0) /* check number for validity */
29 return(0);
30
31 for (i = 0; i < number; ++i)
32 for (j = 0; j < size; ++j)
33 if (putc(*buffer++, stream) EQ EOF)
34 return(i);
35
36 return(number);
37}
38
39
Note: See TracBrowser for help on using the repository browser.