Lines Matching defs:fdctx
62 struct fdctx {
70 static void fdctx_init(int, struct fdctx *);
71 static void fdctx_destroy(struct fdctx *);
72 static ssize_t fdgetc(struct fdctx *, char *);
78 fdctx_init(int fd, struct fdctx *fdc)
84 *fdc = (struct fdctx){
92 fdgetc(struct fdctx *fdc, char *c)
110 fdctx_destroy(struct fdctx *fdc)
170 struct fdctx fdctx;
238 fdctx_init(STDIN_FILENO, &fdctx);
241 nread = fdgetc(&fdctx, &c);
327 fdctx_destroy(&fdctx);