[go: up one dir, main page]

File: unc.h

package info (click to toggle)
sabre 0.2.3-3
  • links: PTS
  • area: main
  • in suites: slink
  • size: 4,876 kB
  • ctags: 5,106
  • sloc: cpp: 25,581; ansic: 7,439; sh: 2,063; makefile: 92
file content (21 lines) | stat: -rw-r--r-- 704 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*!!*****************************************************!!
  !! copyright (c) 1995 by Dan Hammer and Robert Lippman !!
  !!*****************************************************!!*/
#ifndef UNC_H_RCSID
#define UNC_H_RCSID "$Id: unc.h,v 1.1 1997/11/30 00:58:28 dan Exp $"
#ifdef __cplusplus
extern "C" 
{
#endif
  long unc_mem_to_mem(unsigned char *dst, long dst_size,
			   unsigned char *src, long src_size);
  long unc_file_to_mem(unsigned char *dst, long dst_size,
			    FILE *input, long from, long to);
  long unc_file_to_file(FILE *output,
			     FILE *input, long from, long to);
  int local_flush(int num_bytes);
  int local_nextbyte(void);
#ifdef __cplusplus
}
#endif
#endif /* UNC_H_RCSID */