File: library.h

package info (click to toggle)
taper 6.8.4-1
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 1,388 kB
  • ctags: 1,577
  • sloc: ansic: 15,744; makefile: 246
file content (12 lines) | stat: -rw-r--r-- 227 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
/* library.h */

#ifndef LIBRARY_H_INCLUDED
#define LIBRARY_H_INCLUDED

#include <stdio.h>

char *fgetsz (char *s, int size, FILE *stream);
int fputsz (const char *s, FILE *stream);
void convert_to_printable (char *s);

#endif