Jump to content

CHAR: Difference between revisions

From EDM2
mNo edit summary
No edit summary
 
(7 intermediate revisions by 2 users not shown)
Line 1: Line 1:
== CHAR ==
Single-byte character.
Single-byte character.


=== Type ===
== Type ==
[[char]]


char
===C Declaration Method===
#define


==== C Declaration Method ====
===Example===  
#define CHAR char


  #define
==NPCHAR==
Near pointer to a character.
  typedef CHAR NEAR *NPCHAR;


==PCHAR==
Pointer to a character.
typedef CHAR *PCHAR;


[[Category:The OS/2 API Project]]
[[Category:Data type]]

Latest revision as of 18:53, 25 May 2024

Single-byte character.

Type

char

C Declaration Method

#define

Example

#define CHAR char

NPCHAR

Near pointer to a character.

typedef CHAR NEAR *NPCHAR;

PCHAR

Pointer to a character.

typedef CHAR *PCHAR;