File: fetch.h

package info (click to toggle)
publicfile 0.52-13
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 896 kB
  • sloc: ansic: 3,903; makefile: 468; sh: 296
file content (13 lines) | stat: -rw-r--r-- 225 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef FETCH_H
#define FETCH_H

#define FETCH_RETR 0
#define FETCH_NLST 1
#define FETCH_LIST 2
#define FETCH_LISTONE 3

extern void fetch(char *,int,int,int);
extern int fetch_ascii;
extern unsigned long fetch_rest;

#endif