You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
289 B
17 lines
289 B
#ifndef SEEK_H
|
|
#define SEEK_H
|
|
|
|
off_t lseek(int, off_t, int);
|
|
|
|
typedef unsigned long seek_pos;
|
|
|
|
extern seek_pos seek_cur(int);
|
|
|
|
extern int seek_set(int,seek_pos);
|
|
extern int seek_end(int);
|
|
|
|
extern int seek_trunc(int,seek_pos);
|
|
|
|
#define seek_begin(fd) (seek_set((fd),(seek_pos) 0))
|
|
|
|
#endif
|
|
|