mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
310 B
10 lines
310 B
#ifndef H__tools
|
|
#define H__tools
|
|
|
|
/*lint +fvr Routines that exhibit varying return mode */
|
|
extern LPSTR FAR PASCAL lstrcpy( LPSTR, LPSTR );
|
|
extern LPSTR FAR PASCAL lstrcat( LPSTR, LPSTR );
|
|
extern int FAR PASCAL lstrlen( LPSTR );
|
|
/*lint -fvr End of routines that exhibit varying return mode */
|
|
|
|
#endif
|