post.h 201 B

12345678910111213
  1. typedef struct Postcrud Postcrud;
  2. struct Postcrud
  3. {
  4. int fd[2];
  5. Srv *s;
  6. char *name;
  7. char *mtpt;
  8. int flag;
  9. };
  10. Postcrud *_post1(Srv*, char*, char*, int);
  11. void _post2(void*);
  12. void _post3(Postcrud*);