blob: ac761a9b4cae58631d3356f0e72865d535bc5d8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#include <sys/types.h>
#include "seek.h"
/**
@file seek.c
@author djb
@source qmail
@brief seek in an open file descritor
*/
off_t lseek(int fd,off_t offset,int whence);
int ftruncate(int fd, off_t length);
#define CUR 1 /* sigh */
seek_pos seek_cur(int fd)
{ return lseek(fd,(off_t) 0,CUR); }
#define END 2 /* sigh */
int seek_end(int fd)
{ if (lseek(fd,(off_t) 0,END) == -1) return -1; return 0; }
#define SET 0 /* sigh */
int seek_set(int fd,seek_pos pos)
{ if (lseek(fd,(off_t) pos,SET) == -1) return -1; return 0; }
int seek_trunc(int fd,seek_pos pos)
{ return ftruncate(fd,(off_t) pos); }
|