dat.h 287 B

12345678910111213141516171819
  1. typedef struct Place Place;
  2. struct Place {
  3. double lon;
  4. double lat;
  5. };
  6. #pragma varargck type "L" Place
  7. enum {
  8. Undef = 0x80000000,
  9. Baud= 4800,
  10. };
  11. extern Place nowhere;
  12. extern int debug;
  13. int placeconv(Fmt*);
  14. Place strtopos(char*, char**);
  15. int strtolatlon(char*, char**, Place*);