1 //  SCCSID      : @(#)pasconv.h 1.1 11:50:05 18 Dec 1996
2 //  ----------------------------------------------------------------------------
3 //  Copyright (c) 1999 Digital Imaging Group, Inc.
4 //  For conditions of distribution and use, see copyright notice
5 //  in Flashpix.h
6 //  ----------------------------------------------------------------------------
7 
8 #ifndef pasconv_h
9 #define pasconv_h
10 
11 #include "common_a.h"
12 
13 #ifndef macintosh
14   void NumToString (long x, unsigned char *s);
15   long StringToNum (unsigned char *s, long *px);
16 #endif
17   void PascalToC (const unsigned char *passtr, char *cstr);
18   void CToPascal (const char *cstr, unsigned char *passtr);
19   int PascalStrcmp (const unsigned char *a, const unsigned char *b);
20 //  char* c2pstr(char* cstr);
21 
22 #endif  //pasconv_h
23