local_proto.h 757 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. #ifndef __LOCAL_PROTO_H__
  2. #define __LOCAL_PROTO_H__
  3. #include "ransurf.h"
  4. /* calcsd.c */
  5. void CalcSD(void);
  6. /* calcsurf.c */
  7. void CalcSurface(void);
  8. /* cpfilter.c */
  9. void CopyFilter(FILTER * FPtr, FILTER Filter);
  10. /* dd.c */
  11. double DD(double Dist);
  12. /* decay.c */
  13. void DistDecay(double *Effect, int R, int C);
  14. /* digits.c */
  15. int Digits(double Double, int MaxSig);
  16. /* gasdev.c */
  17. double GasDev(void);
  18. /* gennorm.c */
  19. void GenNorm(void);
  20. /* init.c */
  21. void Init(void);
  22. /* makebigf.c */
  23. void MakeBigF(void);
  24. /* makepp.c */
  25. double MakePP(int Row, int Col, int OutRows, int OutCols,
  26. double **Randoms, BIGF BigF);
  27. /* random.c */
  28. double ran1(void);
  29. /* save.c */
  30. void SaveMap(int NumMap, int MapSeed);
  31. /* zero.c */
  32. void ZeroMapCells(void);
  33. #endif