local_proto.h 320 B

1234567891011121314151617
  1. #ifndef __LOCAL_PROTO_H__
  2. #define __LOCAL_PROTO_H__
  3. #include "point.h"
  4. /* drawline.c */
  5. void drawline(int x1, int y1, int x2, int y2);
  6. /* insert.c */
  7. void insert(POINT ** pres_pt, int row, int col, int backrow, int backcol);
  8. /* path_finder.c */
  9. void path_finder(int row, int col, int backrow, int backcol);
  10. #endif