mirror of
https://github.com/elliotnunn/BuildCubeE.git
synced 2024-11-19 00:05:25 +00:00
33 lines
589 B
C
33 lines
589 B
C
/************************************************************
|
|
|
|
Created: Thursday, September 7, 1989 at 7:47 PM
|
|
Strings.h
|
|
C Interface to the Macintosh Libraries
|
|
|
|
|
|
Copyright Apple Computer, Inc. 1985-1989
|
|
All rights reserved
|
|
|
|
************************************************************/
|
|
|
|
|
|
#ifndef __STRINGS__
|
|
#define __STRINGS__
|
|
|
|
#ifndef __TYPES__
|
|
#include <Types.h>
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
StringPtr c2pstr(char *aStr);
|
|
pascal StringPtr C2PStr(Ptr cString);
|
|
char *p2cstr(StringPtr aStr);
|
|
pascal Ptr P2CStr(StringPtr pString);
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|