home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / flower.zip / mniplist.h < prev    next >
Text File  |  1997-01-26  |  1KB  |  31 lines

  1.  
  2. int addToFileList ( struct fileInfo *, char * );
  3. int addToFuncList( struct fileInfo *, char * );
  4. int addToCalledFuncList( struct funcInfo *, char * );
  5. int createCalledByFuncList( struct fileInfo *
  6.                           , struct isCalledByFuncInfo * );
  7. int addToCalledByFuncList( struct isCalledByFuncInfo *
  8.                          , struct funcInfo *
  9.                          , struct funcInfo * );
  10. struct isCalledByFuncInfo *endOfCalledByFuncList( struct isCalledByFuncInfo * );
  11. struct isCalledByFuncInfo *startOfCalledByFuncList( struct isCalledByFuncInfo * );
  12. struct isCalledByFuncInfo *funcInCalledByFuncList( char *
  13.                              , struct isCalledByFuncInfo * );
  14. struct isCalledByFuncInfo *callerInList( char *
  15.                          , struct isCalledByFuncInfo * );
  16. void initIsCalledByFuncInfo( struct isCalledByFuncInfo * );
  17. int addToNotCalledFuncList( struct funcInfo **
  18.                           , char *
  19.                           , char * );
  20. void freeLists( struct fileInfo * );
  21. void freeIsCalledByList( struct isCalledByFuncInfo * );
  22. void freeNotCalledList( struct funcInfo * );
  23. struct fileInfo *endOfFileList( struct fileInfo * );
  24. struct fileInfo *startOfFileList( struct fileInfo * );
  25. struct funcInfo *nextNotCalledFunc( struct funcInfo * );
  26. struct funcInfo *funcInFileList( char *
  27.                                , struct fileInfo * );
  28. struct funcInfo *funcInCalledList( char *
  29.                              , struct funcInfo * );
  30.  
  31.