[9] | 1 | /* file.h Copyright 1992-2000 by Michael Temari All Rights Reserved
|
---|
| 2 | *
|
---|
| 3 | * This file is part of ftpd.
|
---|
| 4 | *
|
---|
| 5 | *
|
---|
| 6 | * 01/25/96 Initial Release Michael Temari, <Michael@TemWare.Com>
|
---|
| 7 | */
|
---|
| 8 |
|
---|
| 9 | _PROTOTYPE(int doALLO, (char *buff));
|
---|
| 10 | _PROTOTYPE(int doAPPE, (char *buff));
|
---|
| 11 | _PROTOTYPE(int doCDUP, (char *buff));
|
---|
| 12 | _PROTOTYPE(int doCWD, (char *buff));
|
---|
| 13 | _PROTOTYPE(int doDELE, (char *buff));
|
---|
| 14 | _PROTOTYPE(int doLIST, (char *buff));
|
---|
| 15 | _PROTOTYPE(int doMDTM, (char *buff));
|
---|
| 16 | _PROTOTYPE(int doMODE, (char *buff));
|
---|
| 17 | _PROTOTYPE(int doMKD, (char *buff));
|
---|
| 18 | _PROTOTYPE(int doNLST, (char *buff));
|
---|
| 19 | _PROTOTYPE(int doPWD, (char *buff));
|
---|
| 20 | _PROTOTYPE(int doREST, (char *buff));
|
---|
| 21 | _PROTOTYPE(int doRETR, (char *buff));
|
---|
| 22 | _PROTOTYPE(int doRMD, (char *buff));
|
---|
| 23 | _PROTOTYPE(int doRNFR, (char *buff));
|
---|
| 24 | _PROTOTYPE(int doRNTO, (char *buff));
|
---|
| 25 | _PROTOTYPE(int doSITE, (char *buff));
|
---|
| 26 | _PROTOTYPE(int doSIZE, (char *buff));
|
---|
| 27 | _PROTOTYPE(int doSTAT, (char *buff));
|
---|
| 28 | _PROTOTYPE(int doSTOR, (char *buff));
|
---|
| 29 | _PROTOTYPE(int doSTOU, (char *buff));
|
---|
| 30 | _PROTOTYPE(int doSTRU, (char *buff));
|
---|
| 31 | _PROTOTYPE(int doSYST, (char *buff));
|
---|
| 32 | _PROTOTYPE(int doTYPE, (char *buff));
|
---|