File: seek.h

package info (click to toggle)
fastforward 1%3A0.51-11
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,060 kB
  • sloc: ansic: 8,033; makefile: 483; sh: 160
file content (17 lines) | stat: -rw-r--r-- 261 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef SEEK_H
#define SEEK_H

#include <unistd.h>

typedef unsigned long seek_pos;

extern seek_pos seek_cur();

extern int seek_set(int, seek_pos);
extern int seek_end();

extern int seek_trunc();

#define seek_begin(fd) (seek_set((fd),(seek_pos) 0))

#endif