local_proto.h 637 B

12345678910111213141516171819202122232425262728
  1. /* bufs.c */
  2. extern int allocate_bufs(void);
  3. extern int rotate_bufs(void);
  4. /* gather */
  5. extern void circle_mask(void);
  6. extern void weights_mask(void);
  7. extern int gather(DCELL *, int);
  8. extern int gather_w(DCELL *, DCELL(*)[2], int);
  9. /* readcell.c */
  10. extern int readcell(int, int, int, int);
  11. /* divr_cats.c */
  12. extern int divr_cats(void);
  13. /* intr_cats.c */
  14. extern int intr_cats(void);
  15. /* null_cats.c */
  16. extern int null_cats(const char *);
  17. /* read_weights.c */
  18. extern void read_weights(const char *);
  19. extern double gaussian(double, double);
  20. extern double exponential(double, double);
  21. extern void compute_weights(const char *, double);