File: authpipelib.h

package info (click to toggle)
courier-authlib 0.58-4%2Betch3
  • links: PTS
  • area: main
  • in suites: etch
  • size: 16,212 kB
  • ctags: 1,896
  • sloc: ansic: 21,550; sh: 14,071; makefile: 866; perl: 842; cpp: 284
file content (14 lines) | stat: -rw-r--r-- 237 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef PIPE_H
#define PIPE_H PIPE_H

/* no headers needed */

/* forks the pipe-program fills the 2 filed
   returns 0 for success, 1 for error */
int getPipe(int *dataIn, int *dataOut);

/* closes fds */
void closePipe(void);

#endif