mirror of
https://github.com/diegocr/libnix.git
synced 2025-12-08 14:58:32 +00:00
12 lines
169 B
C
12 lines
169 B
C
/* Write a long word to a file */
|
|
|
|
#include <stdio.h>
|
|
|
|
int putw(int w, FILE *f)
|
|
{
|
|
if (fwrite((char *)&w, sizeof(w), 1, f) != 1)
|
|
return EOF;
|
|
else
|
|
return 0;
|
|
}
|