C Programming Reference Manual MCP
C Programming Reference Manual MCP
The Software that this documentation relates to is of pre-production quality and provided as part of a technology
preview or field test evaluation. The software and related documentation may not be complete or accurate, and the
software may not be stable or tested to the same level as beta software or commercially released software. You are
solely responsible for safeguarding and backing up your data to protect against any crashes or data loss. NO
WARRANTIES OF ANY NATURE ARE EXTENDED BY THIS DOCUMENT. Any product or related information described
herein is only furnished pursuant and subject to the terms and conditions of a duly executed evaluation agreement to
test and/or evaluate the software. Unisys cannot accept any financial or other responsibility that may be the result of
your use of the information in this document or software material, including direct, special, or consequential
damages.
You should be very careful to ensure that the use of this information and/or software material complies with the
laws, rules, and regulations of the jurisdictions with respect to which it is used. The information contained herein is
subject to change without notice. Revisions may be issued to advise of such changes and/or additions
Unisys and other Unisys product and service names mentioned herein, as well as their respective logos, are
trademarks or registered trademarks of Unisys Corporation. All other trademarks referenced herein are the property
of their respective owners.
Contents
Section 1. Overview of the C Language
Section 2. Types
Section 3. Declarations
iv 8600 2268–207
Contents
8600 2268–207 v
Contents
Section 6. Statements
vi 8600 2268–207
Contents
Section 7. Functions
8600 2268–207 ix
Contents
x 8600 2268–207
Contents
8600 2268–207 xi
Contents
Appendix E. Internationalization
<assert.h>—Diagnostics ..........................................................G–14
<ctype.h>—Character Handling..............................................G–14
<errno.h>—Errors ...................................................................... G–15
<fcntl.h>—File Control .............................................................. G–18
<float.h>—Floating-Point Characteristics ............................ G–18
<grp.h>—Group Structure ....................................................... G–19
<iso646.h>—Operator Synonyms ......................................... G–19
<limits.h>—Limits of Integral Types .................................... G–20
<locale.h>—Localization .......................................................... G–20
<math.h>—Mathematics .......................................................... G–21
<pwd.h>—Password Structure .............................................. G–21
<semaphore.h>—POSIX Semaphores .................................. G–21
<setjmp.h>—Nonlocal Jumps................................................ G–22
<siginfo.h>—Signal Generation Information ...................... G–22
<signal.h>—Signal Handling ................................................... G–23
<sort.h>—Sort and Merge ...................................................... G–24
<stdarg.h>—Variable Arguments.......................................... G–24
<stddef.h>—Common Definitions ........................................ G–25
<stdio.h>—Input/Output ......................................................... G–25
<stdlib.h>—General Utilities ................................................... G–27
<string.h>—String Handling.................................................... G–28
<sys/ipc.h>—Interprocess Communication
Access Structure .................................................................. G–28
<sys/sem.h>—X/Open Semaphores .................................... G–28
<sys/shm.h>—Shared Memory Facility............................... G–29
<sys/stat.h>—Data Returned by the stat Function .......... G–29
<sys/times.h>—Processor Times......................................... G–30
<sys/types.h>—Primitive System Data Types .................. G–30
<sys/utsname.h>—System Name Structure ...................... G–31
<sys/wait.h>—Declarations for Waiting .............................. G–31
<time.h>—Date and Time ........................................................ G–31
<unistd.h>—Symbolic Constants and
Miscellaneous Functions .................................................... G–32
8600 2268–207 xv
Contents
Bridge..................................................................................... J–5
Following the Paths of a Railroad Diagram ................................................ J–6
Railroad Diagram Examples with Sample Input........................................ J–7
Index ..................................................................................................... 1
2–1. Summary of Basic Data Types and Data Type Specifiers ..................................... 2–1
2–2. Summary of Derived Data Types and Data Type Specifiers ................................ 2–2
2–3. Size and Range of Floating-Point Types .................................................................... 2–4
2–4. Size and Range of Plain and Signed Integer Types ................................................ 2–6
2–5. Size and Range of Unsigned Integer Types ............................................................. 2–7
2–6. Range of Data Types ...................................................................................................... 2–7
xx 8600 2268–207
Examples
The C language does not provide any input and output facilities, mathematical
functions, string processing routines, and other services itself. They are, however,
provided in an associated C library. Refer to Volume 2 for specific information on the
library functions.
This section provides an introduction to the C language and defines commonly used
program and language elements such as functions, types, identifiers, and constants.
Documentation Updates
This document contains all the information that was available at the time of
publication. Changes identified after the release of this document are included in
problem list entry (PLE) 191561662. To obtain a copy of the PLE, contact your Unisys
representative or access the current PLE from the Unisys Product Support website:
http://www.support.unisys.com/all/ple/19151662
Note: If you are not logged into the Product Support site, you will be asked to do
so.
What’s New
New or Revised Information Location
Section 9
Add new subtopic “Compile for Compiling and Executing A Series C
Syntax”. Programs
Section 10
Added sentence to subsection. LI_SUFFIX Option
Refer to the C Programming Reference Manual, Volume 2 for more information about
the POSIX interface.
Open/OLTP
Open/OLTP is a function/capability of the Transaction Server; it implements a
client/server model. Clients invoke services but do not update the databases directly.
Service providers can provide multiple services where a service is used to update a
DMSII database. The client/server model applies to COMS online programs only
because the implementation of services is provided by COMS.
You can access Open/OLTP with C by incorporating the C header files included on the
release media. The Transaction Server for ClearPath MCP Programming Guide
explains the procedures for accessing Open/OLTP.
That manual describes the following service functions related to the Open/OLTP
interfaces:. GET_BUFFER_DESIGNATOR
• GET_DESIGNATOR_USING_DESIGNATOR
• GET_ERRORTEXT_USING_NUMBER
• GET_INTEGER_USING_DESIGNATOR
For more information about creating applications using Open/OLTP, refer to the
Transaction Server for ClearPath MCP Programming Guide.
Program Elements
A C program can contain the following program elements:
• Data types
• Functions
• Statements
• Declarations
• Preprocessor directives
Data Types
A data type is a set of values and a set of operations that can be performed on those
values. In the C language, each data type has its own set of values and its own set of
operations. There are three groups of data types in the C language:
Basic data types The basic data types consist of character, integer, and floating-
point values.
Derived data types The derived data types consist of combinations of basic data
types. The derived data types include arrays, pointers, structures,
unions, enumerations, and functions.
Void type The void type is an empty set of values.
See Also
• Refer to Section 2, “Types,” for more information on data types and data
specifiers.
Statements
Statements perform actions and determine the flow of control. The following
keywords indicate statements in the C language.
• break
• continue
• do
• for
• goto
• if
• return
• switch
• while
See Also
Refer to Section 6, “Statements,” for more information about statements.
Functions
In the C language, functions are similar to subroutines or procedures in other
languages. Functions are separately defined sections of code that can be called by
other functions.
See Also
Declarations
Declarations define variables. The following are four groups of declarators.
Simple declarator The simple declarator defines variables with a data type of
arithmetic, structure, union, and enumeration.
Pointer declarator The pointer declarator declares variables of pointer types.
Array declarator The array declarator declares objects of array types.
Function declarator The function declarator declares objects of function types.
See Also
Refer to Section 3, “Declarations,” for more information on declarators.
Preprocessor Directives
The preprocessor processes the source code of a C program before compilation
begins. The C preprocessor is capable of macro substitution, conditional compilation,
and inclusion of named files.
The preprocessor can be used to develop programs that are easier to read, develop,
modify, and transport to another system. The preprocessor can also be used to
customize the C language for a particular application.
See Also
Refer to Section 8, “The C Preprocessor,” for more information on the preprocessor
directives.
Language Elements
The following language elements of C are discussed:
• Tokens
− Identifiers
− Constants
− Operators
− Keywords
− String literals
− Punctuators
• Character sets
• White space
• Comments
Tokens
The token is the smallest lexical element of the C language. The compiler collects the
characters in a C source program into tokens. White space or comments separate
adjacent keywords, identifiers, and constants. The C language contains six classes of
tokens:
• Identifiers
• Constants
• Operators
• Keywords
• String literals
• Punctuators
When the C compiler scans the source lines, it forms each token from the longest
possible sequence of characters going from left to right, using the syntax rules of the
language.
Examples
If the following expression is written:
x+++++y
x ++ ++ + y
This is not a valid expression even though the following expression is a valid
expression:
x++ + ++y
See Also
Identifiers
An identifier is the name of one of the following program entities:
• Variable
• Tag member of a structure, union, or enumeration
• Function
• Member of a structure or union
• Enumeration
• Type
• Label
• Macro name
Allowable Characters
An identifier is a sequence of uppercase letters, lowercase letters, digits, and
underscores. The identifier does not end until some other character is written. An
identifier can fill an entire line.
• An identifier can contain only uppercase letters, lowercase letters, digits, and
underscores.
• The first character of an identifier must be an uppercase letter, lowercase letter,
or an underscore.
− All identifiers beginning with an underscore are considered reserved.
− Do not begin identifier names with an underscore, since they may conflict with
one of the names internal to the C library.
• Except for a macro name, an identifier cannot be identical to a keyword.
• The first 250 characters of an internal identifier are significant.
• The first 250 characters of an external identifier are significant to the Binder.
• The C language is case sensitive. Therefore, the identifiers abc, Abc, ABc, abC, and
ABC are all unique identifiers.
• Some other languages do not allow lowercase letters or translate lowercase
letters to uppercase. If an identifier is to be used by another language, it should
not contain lowercase letters.
Programming Conventions
The following conventions in the choice of identifiers are not part of the C language.
They are, however, followed by many C programmers. The purpose of these
conventions is to produce programs that are easier to understand and easier to move
to a different computer system.
• Although the compiler is case sensitive, identifiers should differ in more than just
their case. For example, it is generally considered poor programming style to have
two identifiers called number and Number.
• Preprocessor macro names are usually all uppercase letters.
See Also
Refer to “Macro Definition and Replacement Examples” in Section 8 for more
information.
Scope
Scope defines where in source text an identifier can be used and when it can be
reused.
An identifier is “visible” (can be used) only within a region of a program called its
scope. The scope of an identifier is the region of a program where its declaration or
definition is in effect. There are four kinds of scope:
File scope If the declaration of an identifier is outside all blocks, the identifier
has file scope. File scope starts at the completion of the identifier’s
declarator and ends at the end of the file. File scope includes all files
included by a preprocessor directive. All macro names have file
scope.
Function scope A label is the only identifier that has function scope. By using the
goto statement, a label can be used anywhere in the function in
which it is declared. Labels must be unique within a function.
Block scope An identifier has block scope if its declaration appears within a block
or in the list of parameter identifiers in a function definition. Block
scope starts at the completion of the identifier’s declarator and
ends at the right brace (}) that closes the associated block. The
scope of a parameter ends at the end of the function definition. If a
declaration in an inner block contains the same identifier as one in
an outer block, the outer block’s declaration is hidden (not visible)
until the right brace (}) closes the inner block. After the brace, the
declaration of the identifier in the outer block is visible.
Function prototype An identifier has function prototype scope if its declarator appears
scope within the list of parameters in a function prototype. A function
prototype is a declaration of a function that declares the types of its
parameters. Function prototype scope starts at the completion of
the parameter’s declarator and ends at the end of the function
prototype in a declaration.
See Also
Linkages
Linkage is the process of allowing two identical identifiers declared in different scopes
to refer to the same function or object.
External linkage In the entire set of source files and libraries that constitute the
program, every instance of a particular identifier with external
linkage refers to the same function or object. If the declarations in
two source files or in disjoint scopes within one source file differ,
the result is undefined.
Internal linkage In the same source file, each instance of an identifier with internal
linkage refers to the same function or object.
No linkage Identifiers with no linkage refer to certain identifiers. The following
identifiers have no linkage:
An identifier that declares anything other than a function or an
object.
An identifier declared as a function parameter.
An identifier that declares an object within a block without the
keyword extern.
An identifier of a function or object declared with file scope has internal linkage if its
first declaration in the source file contains the keyword static. If the declaration does
not contain the keyword static, the identifier has external linkage.
If the declaration of a function or object contains the keyword extern, the identifier has
the same linkage as the previous declaration of the identifier with file scope. If the
identifier was not previously declared with file scope, the identifier has external
linkage.
Identifiers in inner blocks declared with extern are considered to be that of any
previous declaration of the identifier with file scope. Therefore, array size information
can be provided on an inner declaration and not on an outer declaration if both
declarations use extern. However, dimension information is relevant only in the inner
block.
Example
The following example illustrates the accumulation of information about identifiers in
inner blocks declared with extern.
extern x[];
( extern x [5];
sizeof(x); /* legal – will get total size of array
in bytes */
}
sizeof(x); */ illegal */
At the second sizeof operator, the dimension of the array is not known. The dimension
is known only inside the inner block.
See Also
Name Spaces
In the C language, the same identifier can be declared for more than one program
entity. When one identifier is associated with more than one program entity, the
identifier is said to be “overloaded.” The C compiler uses the syntactic context to
determine which declaration to use. For example, an identifier might be both the name
of a variable and a union tag. When used in a type specifier, the union tag association
is used. If used in an expression, the variable is used.
There are six name spaces (or overloading classes) for identifiers, as follows.
Example
The following example is a legal use of overloading names.
See Also
• Refer to Volume 2, “Headers and Functions,” for information on the use of name
spaces in header files.
Syntax
identifier:
nondigit
identifier nondigit
identifier digit
nondigit: one of
a b c d e f g h i j k l m
n o p q r s t u v w x y z
A B C D E F G H I J K L M
N O P Q R S T U V W X Y Z
_
digit: one of
0 1 2 3 4 5 6 7 8 9
Constants
• Integer constants
• Floating-point constants
• Character constants
• Enumeration constants
• String constants
Every constant in a C program has a type. The form and value of the constant
determines its type. The value of the constant must be representable in the storage
appropriate for its type in the execution environment.
Integer Constants
An integer constant is a sequence of digits. A minus sign can precede the digits of an
integer constant. However, the minus sign is a unary operator that is applied to the
integer constant. It is not considered to be part of the constant.
The type of an integer constant is int. Add a suffix to any of these forms to control
the type more closely. The suffix L or l indicates that the constant is type long. The
suffix U or u indicates that the constant is type unsigned. The suffixes can be added in
either order.
Examples
16 Decimal notation
020 Octal notation for decimal 16
0X10 Hexadecimal notation for decimal 16
Table 1-1 lists the integer constant limits for this C language implementation.
Any integer constant that cannot be represented in its type causes the compiler to
issue an error message.
Syntax
The following syntax describes integer constants and their decimal, octal, and
hexadecimal notations:
integer-constant:
decimal-constant integer-suffixopt
octal-constant integer-suffixopt
hexadecimal-constant integer-suffixopt
decimal-constant:
nonzero-digit
decimal-constant digit
octal-constant:
0
octal-constant octal-digit
hexadecimal-constant:
0x hexadecimal-digit
0X hexadecimal-digit
hexadecimal-constant hexadecimal-digit
nonzero-digit: one of
1 2 3 4 5 6 7 8 9
0 1 2 3 4 5 6 7
hexadecimal-digit: one of
0 1 2 3 4 5 6 7 8 9
a b c d e f
A B C D E F
integer-suffix:
unsigned-suffix long-suffixopt
long-suffix unsigned-suffixopt
unsigned-suffix: one of
u U
long-suffix: one of
l L
Floating-Point Constants
A floating-point constant always uses decimal digits. The exponent is always a power
of 10. The value of a floating-point constant is always nonnegative. A minus sign can
precede a floating-point constant. If a minus sign precedes the constant, the minus
sign is a unary operator that is applied to the floating-point constant. It is not
considered part of the constant.
Examples
The following are all valid examples of floating-point constants.
0. 4e2 4.2e
.0 3E-1 2.25e-4
2.0 125e-3 1.0E10
137.8536 67E4
If the size of the floating-point constant is too large or too small for the type to
represent, the compiler issues an error message.
Table 1-2 lists the limits for floating-point constants in this C language implementation.
For the float type, the hardware can have a digit precision of 11 digits. Rounding
errors introduced by arithmetic operations make the eleventh digit inaccurate. The
limits of a double are the same as either float or long double, depending on the
value of the DBLTOSNGL compiler control option.
Syntax
The following syntax describes floating-point constants:
floating-point constant:
fractional-constant exponent-partopt floating-suffixopt
digit-sequence exponent-part floating-suffixopt
fractional-constant:
digit-sequenceopt . digit sequence
digit-sequence .
exponent-part :
e signopt digit-sequence
E signopt digit-sequence
sign : one of
+ -
digit-sequence:
digit
digit-sequence digit
floating-suffix: one of
f l F L
Character Constants
With a few exceptions, the characters that can appear in a character constant are the
characters in the source character set. The exceptions are the newline, backslash, and
single quote characters. However, these characters can be entered by using escape
sequences. Escape sequences can represent the single quote, double quote, question
mark, backslash, and any arbitrary octal or hexadecimal value.
Escape
Character Sequence
To represent the double quote and the question mark, use either the characters
themselves or the escape sequence. The escape sequence \’ must be used to
represent the single quote.
The escape character representations are only used within strings or character
constants. They were created for that purpose only. The escape characters are
independent of the host or target computer. They perform their function on any
terminal provided that terminal is capable of performing this function.
All characters can be specified by the \ddd or \xddd character sequences. The ddd
character sequence represents from one to three octal (\ddd) or one or more
hexadecimal (\xddd) digits. The digits represent the octal or hexadecimal value of the
character in the EBCDIC character set. For example, represent the letter A in the
EBCDIC character set by using the \301 or \xC1 escape sequences. 301 is the octal
value and C1 is the hexadecimal value of the letter A in the EBCDIC character set.
Examples
Character Explanation
Constant
‘a’ Letter a
‘\201’ Letter a (EBCDIC)
‘\n’ Newline character
‘\327’ Letter P (EBCDIC)
‘\’’ Apostrophe or single quote
‘\0’ Null character
‘\x07’ Letter P (EBCDIC)
Character constants are type int. The value of the character constant is the numerical
value of that character in the EBCDIC or ASCII character set, depending on the value of
the STRINGS compiler control option (the default is EBCDIC). Refer to Appendix F,
“The ASCII and EBCDIC Character Sets,” for details on the EBCDIC character set.
The C compiler allows multicharacter constants like 'ABC'. The purpose of this is to
enable programmers to create an integer value (not a string) from the characters. The
compiler allows character constants up to four characters long. Because characters
have different sizes on different computers, the use of this feature limits the
portability of a program.
Syntax
The following syntax describes the character constants:
character-constant:
’c-char-sequence’
L’c-char-sequence’
c-char-sequence:
c-char
c-char-sequence c-char
c-char:
any character in the source character set, except the
single-quote (’), backslash (\), or newline character
escape-sequence
escape-sequence: one of
\ escape-sequence-character
\ octal-digitopt octal-digitopt octal-digit
\x hexadecimal-code
escape-sequence-character: one of
’ " ? \ a b f n r t v
hexadecimal-code: one of
hexadecimal-codeopt hexadecimal-digit
String Constants
Like character constants, the printing characters include all the characters in the
source character set, except the newline, double quote, and the backslash characters.
Use the escape sequences for these characters in a string constant. For example, to
include the double quote in a string constant, use the escape sequence \" wherever
the double quote (") character is needed.
A string cannot cross a line boundary unless the line is ended with a character
backslash (\). If a line is ended with a character backslash (\), the string continues at
the beginning of the next line. Any spaces between the beginning of the next line and
the first character are considered to be part of the string constant.
A newline character (\n) can be included in a string constant. When the string constant
is printed, the characters after the newline character are on the next line.
Examples
In the C language, a string constant is actually a character array. For example, the
string constant "ABCDEF" is the same as the following character array:
| A | B | C | D | E | F | \0 |
0 1 2 3 4 5 6
For every string constant of n characters, the compiler allocates a block of n+1
characters. The first n characters are initialized with the characters from the string
constant. By convention, the null character (\0) ends a string in the C language. With
string constants, the compiler automatically adds the null character to the end of the
string. Even though a string constant is a constant, the compiler does not prevent
storage of new values in the string constant during program execution.
The type of a wide string constant is an array of wchar t, which is an unsigned short
integer defined in the <stdef.h> header. The wide string constant L”ABCDEF”
becomes an array of seven unsigned short integers of type wchar t shown as
follows:
Syntax
The following syntax describes string constants:
string-constant:
"s-char-sequenceopt"
L"s-char-sequenceopt"
s-char-sequence:
s-char
s-char-sequence s-char
s-char:
any character in the source character set, except the
double-quote (*), backslash(\0, or newline character
escape-sequence
( ) [ ] { } , ; :
[ ]
( )
? :
The number sign (#) and the double number sign (##) operators occur in macro-defining
preprocessor directives only.
A white space may not appear inside a multicharacter operator. For example, x + = y
must be written in the following way:
x += y
See Also
Keywords
The C language reserves the following tokens for use as keywords (also called
reserved words); use them only for their intended use as keywords.
Character Sets
This C language implementation defines two character sets, as follows.
Source Lines
In this C language implementation, a source line cannot contain more than 509
characters.
Terminating a line with a backslash continues the source line. After terminating a line
with a backslash, continue a source line to the next line by starting at the very
beginning of that next line.
The C compiler replaces each trigraph sequence listed in Table 1-5 with the specified
single character in the source character set.
??= #
??( [
??/ \
??) ]
??’ ^
??< {
??! |
??> }
??- ~
The trigraph character sequences enable the input of characters that are not available
on some input devices.
The C compiler replaces each digraph sequence listed in Table 1-6 with the specified
single character in the source character set.
Table 1–6. Digraph Character Sequences
%: #
<: [
:> ]
<% {
%> }
The digraph character sequences enable the input of characters that are not available
on some input devices. Digraph sequences are tokens.
255). Values up to 255 can be stored in a char through the use of an octal or
hexadecimal escape sequence or a multicharacter character constant.
The target character set can be changed from EBCDIC to 8-bit ASCII. All source
characters in character and string constants are translated from EBCDIC to their
corresponding position in ASCII. The sign attribute of the plain char type (also called char
type) can also be changed from unsigned to signed.
See Also
Refer to “Character Types” in Section 2 for more information on char types.
White Space
The C language requires white space to separate adjacent keywords, identifiers, and
constants. Otherwise, the C compiler ignores white space, except when it appears in
a character or string constant. White space is normally used to separate tokens and to
make programs easier to read. The amount of white space between tokens is not
significantLegal white space for nonpreprocessor lines can be generated by any of the
following:
• Horizontal tab
• Space
• Newline
• Carriage return
• Vertical tab
• Form feed
• Comments
Legal white space for preprocessor lines can be generated by any of the following:
• Horizontal tab
• Space
• Comments
Note: Most other ClearPath MCP software products do not correctly handle
horizontal tab, carriage return, vertical tab, and form feed commands when used as
white space. These should be avoided whenever possible.
Comments
In the C language, the /* character sequence begins a comment and the */ character
sequence ends a comment. A comment must end before the end of the logical file in
which it begins. ClearPath MCP C allows C++ style comments, where the // character
sequence begins the comment and the logical end of the line ends the comment.
The C compiler treats the comment as white space.
Examples
The text between the /* character sequence and the */ character sequence illustrates
a comment in the C language.
The C preprocessor replaces comments with white space. The preprocessor ignores
the text between the comment delimiters and does not examine that text for
commands or macro calls.
A data type is a set of values and a set of operations. For example, the integer data
type accepts integers only within a specific range. In this C language implementation,
the integer range is 1-2**39 to 2**39-1. The operations that can be performed on
integer data are integer addition, integer subtraction, integer division, integer
multiplication, and so forth.
Tables 2–1 summarizes the basic data types and the type specifiers that correspond to
each data type.
Table 2–1. Summary of Basic Data Types and Data Type Specifiers
Table 2–1. Summary of Basic Data Types and Data Type Specifiers
Table 2–2 summarizes the derived data types and the data type specifiers that
correspond to each data type.
Table 2–2. Summary of Derived Data Types and Data Type Specifiers
The void type specifies an empty set of values. No object can have type void.
• Character
• Floating-point
• Integer
Character Types
Character types are used to contain a single character. The type specifiers for the
character types are as follows:
• signed chr
In the C language, the character type is considered an integral type, but not an integer
type. An integral type consists of character, integer, and enumeration types. The
values associated with a type char variable are integers and can be used in integer
expressions.
An object declared as a character (char) is large enough to store any member of the
source character set. The values of the characters in the source character set are
always guaranteed to have nonnegative values. These values range from 0 to 255. The
C compiler does not sign-extend char and unsigned char types. These character types
are widened to an integer by zero-filling. However, a signed char character type is
sign-extended.
The C language stores a character value as the integer that corresponds to the internal
representation (encoding) of the character, except for negative values stored in a
signed char. These values are stored as if they were subtracted from 256 (as an eight-
bit two’s complement value). For example, -1 is stored as 255, -128 is stored as 128.
The sign of a plain char is important. As stated earlier, the C compiler does not sign-
extend a plain char. A plain char is widened to an integer by zero-filling. Traditionally,
C programming uses char to contain negative values, typically in I/O functions where
-1 means end-of-file. This is not a portable method using plain chars and will not work
See Also
Floating-Point Types
The floating-point types are used to contain real numbers. The C language contains a
single-precision floating-point type and a double-precision floating-point type. The two
type specifiers for single-precision floating-point types are float and double.
Examples
The following examples use the floating-point types:
Table 2–3 lists the size and range of the various types of floating-point types.
The ClearPath MCP hardware provides a range and precision for single-precision
floating point types sufficient for most use of double type. If a C program requires the
range and precision of double precision for double type, the compiler control option
DBLTOSNGL (DouBLe TO SiNGLe) can be reset.
See Also
• “Floating-Point Constants” in Section 1.
Integer Types
The C language provides a wide variety of integer types. The variety reflects the
different sizes and signed or unsigned values. Integer types can be divided into the
following three classes:
• short
• sort int
• int
• long
• long int
Examples
The following declarations declare plain integers:
int index = 0;
long value;
short i, j;
The type specifiers for the signed integer types are as follows:
• signed
• signed short int
• signed short
• signed int
• signed long int
• signed long
Examples
The following declarations declare signed integers:
Table 2–4 lists the size and range of plain and signed integer types.
Table 2–4. Size and Range of Plain and Signed Integer Types
See Also
• nusigned short
• unsigned int
• unsigned
• unsigned long
Examples
The following declarations declare unsigned integers:
Table 2–5 lists the size and range of the various types of unsigned integers.
See Also
Range of C Variables
Table 2–6 summarizes the range of character, floating-point, and integer data types for
C variables.
char 8 1 0 to 255
signed char 8 1 -128 to 127
unsigned char 8 1 0 to 255
short int 48 6 1-2**39 to 2**39 -1
signed short 48 6 1-2**39 to 2**39 -1
unsigned short 48 6 0 to 2**39 -1
int 48 6 1-2**39 to 2**39 -1
signed int 48 6 1-2**39 to 2**39 -1
unsigned int 48 6 0 to 2**39 -1
Array Types
An array is an aggregate object consisting of objects that are called elements. All
elements of an array have the same type.
type name[n]
In the C language, arrays are 0-origin. For example, A3 consists of the elements A0,
A1, and A2.
Syntax
type-name
type-specifier-list abstract-declaratoropt
type-specifier:
char
const
double
enum-specifier
__far
float
int
long
__near
short
signed
struct-or-union-specifier
typedef-name
unsigned
void
volatile
type-specifier-list:
type-specifier
type-specifier-list type
abstract declarator:
pointer
pointeropt direct-abstract-declarator
direct-abstract-declarator:
( abstract-declarator )
direct-abstract-declaratoropt [ constant-expressionopt ]
direct-abstract-declaratoropt ( parameter-type-listopt )
See Also
Multidimensional Arrays
A multidimensional array is an array of arrays. The C compiler enables as many
dimensions as there is room in the internal data structures of the compiler (typically
over 100). To be strictly compatible with the ANSI C standard, six dimensions is the
limit.
type This is the data type of the array. The type can be any C type, except void or
a function type. All elements of the array have the same type.
name This is an identifier that is being defined as the name of an array.
nn This is the number of elements in that dimension of the array.
Multidimensional arrays are stored so that the last subscript varies most rapidly. For
example, the elements of the array int x[2][3] are stored in increasing addresses
as follows:
See Also
Array Bounds
Any time the compiler allocates storage to an array, it must know the size of the array.
However, there are cases when the compiler does not need to know all of the bounds
of the array. It is possible to omit the bounds of the first dimension of an array in the
following cases:
Examples
The following example illustrates the declaration of an external, one-dimensional array
whose bounds are not specified:
In File F1 In File F2
See Also
Examples
The expression x[i] is the same as the following expression:
*(x + i)
*(&x[0] + i)
See Also
Enumeration Types
In the C language, an enumeration type is a set of values represented by identifiers.
The identifiers are also called enumeration constants.
The size of an enumeration type is equal to the size of the int type.
The identifiers in an enumerator list are declared as constants that have type int.
They can appear wherever an int is permitted.
The C language implements enumeration types by associating integer values with the
enumeration constants. The assignment and comparison of values of enumeration
types are implemented as integer assignment and comparison. Integer values are
associated with enumeration constants by the following method:
1. If the first enumerator has no equal sign (=), its enumeration constant has value
zero (0).
2. An enumerator with an equal sign (=) gives the associated enumeration constant
the value of the constant expression.
3. A subsequent enumerator without an equal sign (=) gives its enumeration
constant a value of one more than the value of the previous enumeration
constant.
The integers chosen determine the equality and ordering relationships among values
of the enumeration type.
The scope of an enumeration constant begins after its declaration and ends with the
scope of the enumeration of which it is a member. The identifiers of enumeration
constants in the same scope must all be distinct from each other and from other
identifiers in the ordinary name space (names of variables, functions, typedefs, and
other enumeration constants).
The tag names a particular enumeration and allows it to be referenced after its
definition. The enumeration tag is in the same name space as structure and union tags.
The scope of the tag is the same as a variable declared at the same location in the
source program.
Example
The following example illustrates the enumeration type specifiers:
This enumeration makes hue the tag of an enumeration and then declares col as an
object that has that type and cp as a pointer to an object that has that type. The
enumerated values are in the set { 0, 1, 20, 21 }.
Syntax
The following syntax describes the enumeration type specifier:
enum-specifier :
enum identifieropt {enumerator-list}
enum identifier
enumerator-list :
enumerator
enumerator-list, enumerator
enumerator :
enumeration-constant
enumeration-constant = constant-expression
enumeration-constant:
identifier
See Also
type *name
Pointers to objects always compare as equal when pointing to the same object and
always compare as unequal when pointing to different objects. The same is true for
pointers to functions. However, a pointer to an object can compare as equal to a
pointer to a function even though the object and the function are not the same.
Examples
The following examples illustrate the declaration of pointer types:
The pointer value 0 or NULL is associated with all pointer types. The file <stddef.h>
contains the definition for the preprocessor macro name NULL. A pointer whose value
is a NULL is guaranteed not to point to any object or function.
Syntax
pointer
*type-specifier-listopt
*type-specifier-listopt pointer
type-specifier:
char
const
double
enum-specifier
__far
float
int
long
__near
short
signed
struct-or-union-specifier
typedef-name
unsigned
void
volatile
type-specifier-list:
ty[e-specifier
type-specifier-list type-specifier
See Also
Pointer Arithmetic
The constraints of the arithmetic operators are described in Section 5.
See Also
“Addition Operator,” “Assignment Operators,” “Equality Operators,” and “Relational
Operators” in Section 5.
Structure Types
Structures are collections of objects, possibly of different types, that are grouped
together for ease of manipulation. Structures correspond to records in other
languages. Individual objects are distinguished from one another by unique member
names. The direct member selection operator (.) or the indirect member selection
operator (->) selects a specific member. Member names are local to structures.
Each structure type definition defines a structure type. If the structure type definition
contains a tag, the tag is associated with the type. The tag can be used to reference
that structure type. Tags must be defined before use. The scope of the structure tag
extends to the end of the block in which the structure is defined.
Examples
Given the following structure type definition:
The following structure type definition is the same as the previous structure type
definition:
The size of an object of a structure type is the amount of storage needed to represent
all members in the structure. This includes any unnamed holes between or after
members within a structure.
Syntax
The following syntax describes the structure type specifier:
struct-specifier :
struct identifieropt {struct-declaration-list }
struct identifier
struct-declaration-list :
struct-declaration
struct-declaration-list struct-declaration
struct-declaration :
type-specifier-list struct-declarator-list;
struct-declarator-list :
struct-declarator
struct-declarator-list , struct-declarator
struct-declarator :
declarator
declaratoropt : constant-expression
See Also
• “Names Spaces” and “Scope” in Section 1.
• “Initializing Structures” in Section 3 for information on initializing a data object of
type struct.
Structure Members
The member of a structure can be any type, except function and void. A structure
cannot contain an instance of itself, but it can contain a pointer to an instance of itself.
Member names within a structure must be unique. However, a member name can be
the same as a variable, function, type name, or member name in another structure.
Because members within a structure may have different types, they may have
different storage allocation requirements. Holes can appear between two consecutive
members of a structure to allow for the proper alignment of the members in storage.
See Also
“Name Spaces” and “Scope” in Section 1.
Bit Fields
The C compiler allows a variation of a structure member called bit fields. A bit field is a
set of contiguous bits within a word, which is treated as an integer. With a bit field, a
variable can be created that occupies one or more bits of storage. The purpose of bit
fields is to allow members to be packed as tightly as possible in a structure.
A bit field object can be type int (short, long, signed, or unsigned) or type
char (signeed or unsigned). Plain integers and plain characters act as their
unsigned types. ANSI C specifies that a bit field must have type int (signed
unsined, or plain). If the compiler control option ANSI is set, an error is generated
for a bit field that is declared with any other type.
By default, plain int bit fields are unsigned. You can use the compiler control option
PORT(SIGNEDFIELD) to make plain int bit fields signed. Values are stored into signed
bit fields in two’s complement using as many bits as specified.
A bit field is specified by following the member declarator with a colon and a constant
integer expression that indicates the width of the field in bits. For example, the
following structure type definition defines a 4-bit field for x and a 6-bit field for y:
Bit fields are packed into adjacent bits within a machine word. A field that does not fit
into the space remaining in a word is put into the next word. No field can be wider
than the normal width of the declared type, or 39 bits, whichever is smaller.
A bit field with no declarator can be used as padding to conform to externally imposed
layouts. As a special case of this, a bit field with a width of 0 (zero) causes any further
bit fields to be packed in a different word than any previous bit field. For example, the
following structure type definition causes bit field y to be put into a different word
than x even though both x and y would normally fit into one word:
Note: Because bit fields are allocated differently on different machines, use of
this feature limits the portability of a program.
Union Types
Unions are similar to structures. Unions are defined to have a number of members
that all have zero displacement from the beginning of the union. Therefore, the
members of a union share storage. Unlike structures, a union can contain the value of
only one of its members at a time. A union can be thought of as a structure whose
members overlap and whose size is sufficient to contain the largest of its members.
Each union type definition defines a union type. If the union type definition contains a
tag, the tag is associated with the type. The tag can be used to reference that union
type.
The members of a union can be any type, except function and void. A union cannot
contain an instance of itself, but it can contain a pointer to an instance of itself.
Member names within a union must be unique. However, a member name can be the
same as a variable, function, type name or a member name in another union. Member
names are local to the union. Member names are selected by the direct member
selection operator ( . ) or the indirect member selection operator (->).
Example
The following example illustrates the union type specifier:
Each member of the union is allocated storage starting at the beginning of the union.
An object of a union type begins on a storage alignment boundary appropriate for all
contained members.
The size of an object of a union type is the amount of storage needed to present the
largest member of that type. This includes any padding or unnamed holes that may be
needed after a member to raise the length to the appropriate alignment boundary.
Syntax
The following syntax describes the union type specifier:
union-specifier :
union identifieropt { struct-declaration-list }
union identifier
See Also
• The character and integer types (of all sizes), both signed and unsigned, and
enumerations are collectively called integral types.
• The single-precision and double-precision floating-point values are collectively
called floating-point types.
• Integral and floating-point types are collectively called arithmetic types.
• Arithmetic types and pointers are collectively called scalar types. A single value or
expression initializes a scalar data type.
• Arrays and structures are collectively called aggregate types. A list or series of
values or initializes an aggregate data type.
SCALARTYPES
ARITHMETIC POINTERS
DATATYPES
FLOATING-POINT INTEGRAL
DATATYPES DATATYPE
SINGLE CHARACTER
PRECISION
INTEGER
DOUBLE
PRECISION ENUMERATION
AGGREGATETYPES
See Also
“Declarators” in Section 3 for more information on declaring data. Data types and data
declarations are closely related topics.
Function Types
A function type specifies the type of the result and optionally the types of the
arguments of a function. The result type can be void or any data type, except “array
of type.” In other words, a function cannot return an array or another function. A
function can, however, return a pointer to an array or a function.
• Function definition
• Function declaration
Function Definition
A function definition does the following:
See Also
“Defining Functions” in Section 7 for a description of function definitions.
Function Declaration
A function declaration introduces an external reference to a function defined at some
other place. The following syntax is an example of a function declaration:
Naming a Function
See Also
Void Type
The void type has no representation. An object cannot have type void. The void type
can be used between the parentheses in a function declaration or definition to
represent the fact that the function has no parameters. The void type is used as the
return type for a function that does not return a value. Another valid type based on
void is a pointer to void. The void type can also be used in a cast expression when
explicitly discarding a value.
See Also
“Discarded Values” in Section 5.
A declaration specifies the visibility, lifetime, and type of identifiers for a program. The
identifiers that can be declared in C are
• Variables
• Functions
• Types (typedef names)
• Structure, union, and enumeration tags
• Structure and union members
• Enumeration constants
• Statement labels
• Preprocessor macros
Declaration Syntax
The syntax for a declaration is as follows:
declaration :
declaration-specifiers init-declarator-listopt ;
declaration-specifiers:
storage-class-specifiers declaration-specifiersopt
type-specifier declaration-specifiersopt
fct-specifier declaration-specifiersopt
init-declarator-list :
init-declarator
init-declarator-list , init-declarator
init-declarator :
declarator
declarator = initializer
Except for statement labels and macro definitions, all declarations use this syntax. The
declarators in the init-declarator-list contain the identifier names being declared.
See Also
The term storage class refers to the way the compiler allocates storage to variables.
The storage class specifier determines the lifetime of an identifier
The following table lists the valid storage class specifiers in the C language.
auto The auto storage class specifier is short for automatic. The
auto storage class specifier indicates that a variable is local.
Local variables are allocated storage at the beginning of a
block. Storage is released at the end of the block. The auto
storage class specifier can only be used with a declaration
inside a block.
inline The inline specifier requests that the function body should
be substituted for the function call. It is only a hint to the
compiler; it might be ignored; it does not affect the
meaning of the program. I might appear with any other
storage class specifier.
Typically, the inline specifier is used for very small
functions that are frequently executed. The
substituted code is usually efficient as macro
expansion; sometimes entire variables are added to
preserve the meaning of the program.
Note: the inline storage specifier can be used only
when a function is being defined (a function body is
supplied).
static The static storage class specifier causes the object to exist
for the life of the program. The static storage class specifier
can appear on declarations of functions, local variables, and
variables outside of functions. On functions, the static
storage class specifier indicates that the function name is
not to be exported. On data variables outside of functions,
the static storage class specifier indicates a defining
declaration that is not exported. On local variables, the
static storage class specifier indicates the value is
preserved across different cells on the function.
Table 3–1 summarizes the storage class specifier rules for variables and functions.
C language programmers usually omit the auto storage class specifier, which is
acceptable.
Example
The following program segment indicates the use of storage class specifiers on
declarations.
Note: If a declaration does not contain a type specifier, the type is assumed to be
int.
A type specifier can be qualified to indicate special properties of the objects being
declared. These type qualifiers are the following:
__far
__mear
volatile
See Also
Refer to Section 2, ‘‘Types,” for more specific information on data types and their
corresponding type specifiers.
An expression that designates an object that has a type declared with the const type
qualifier cannot be a modifiable lvalue. Use the const type to declare data objects
whose values are not intended to be altered during the execution of the program. If an
attempt is made to alter such an object by means of an lvalue that has a type not
declared with the const type qualifier, the behavior is undefined.
The address of a non-const object can be assigned to a pointer to a type with the
const attribute. The value, however, cannot be modified by means of the pointer to
const.
Examples
The following pointer declarations demonstrate the difference between a modifiable
pointer to a constant value and a constant pointer to a modifiable value.
The contents of the int pointed to by ptr_to_constant must not be modified, but
ptr_to_constant itself can be changed to point to another const int. Likewise, the
contents of the int pointed to by constant_ptr can be modified, but
constant_ptr itself must always point to the same location.
If an aggregate object type is declared with the const type qualifier, the type of each
member of the aggregate is implicitly declared with that specifier.
See Also
• Refer to “Reading and Writing Complex Declarators” in this section for more
information on how to read declarators.
• Refer to “Lvalue,” “Cast Operator,” and “Constant Expressions” in Section 5 for
more information.
The FARHEAP compiler control option must be set to use the __far and __near type
qualifiers.
See Also
Refer to Section 10, “Compiler Control Options,” for more information on the
FARHEAP compiler control option.
In the TINY and SMALL memory models, data is allocated near, by default. In the
LARGE and HUGE memory models, data is allocated far, by default. If the FARHEAP
compiler control option is set, near and far data can be explicitly defined in any
memory model.
Far and near data can be defined by using the __far and __near type qualifiers in data
declarations. If the standard library header <alloc.h> is included, the macros _far and
_near (using a single leading underscore character) expand to the type qualifiers __far
and __near (using double leading underscores). The rules for type declarators using the
__far and __near type qualifiers are the same as those for the const and volatile type
qualifiers.
See Also
• Refer to Section 10, “Compiler Control Options,” for more information on the
FARHEAP option and the MEMORY_MODEL option.
• Refer to Volume 2, “Headers and Functions,” for information on the header
<alloc.h>.
Examples
The examples in this table illustrate the use of the __far and __near data type
qualifiers:
__near char nc; This defines data in near memory as type char.
char __far fc; This defines data in far memory as type char.
int __near na[100]; This defines an array of data type int in near memory.
__far int fa [100]; This defines an array of data type int in far memory.
In the TINY and SMALL memory models, pointers are near pointers by default. In the
LARGE and HUGE memory models, pointers are far pointers by default. If the
FARHEAP compiler control option is set, far and near pointers can be explicitly defined
in any memory model. Only the first memory segment can be accessed from the TINY
or SMALL memory models unless far pointers are used. Near pointers provide fast
addressing for the first memory segment from the LARGE and HUGE models.
Far and near pointers can be defined by using the __far and __near type qualifiers in
pointer declarations. If the standard library header <alloc.h> is included, the macros
_far and _near (using a single leading underscore character) expand to the type
qualifiers __far and __near (using double leading underscores). The rules for type
declarators using the __far and __near type qualifiers are the same as those used with
the const and volatile type qualifiers.
The compatibility rules for assignment, parameter passing, and so on for pointer
declarations using the __far or __near type qualifiers are the same as for pointers
without these type qualifiers with one exception: Pointers to near data can be
assigned or passed to pointers to far data so long as the same number of levels of
pointers occur in each declaration and the data types are assignment compatible. This
rule is enforced across any number of levels of indirection.
See Also
• Refer to Section 10, “Compiler Control Options,” for more information on the
FARHEAP option and the MEMORY_MODEL option.
• Refer to Volume 2, “Headers and Functions” for information on the header
<alloc.h>.
Examples
The examples in the following table illustrate the use of the __far and __near pointer
type qualifiers.
The address of a non-volatile object can be assigned to a pointer to a type with the
volatile attribute. Then the rules for volatile objects must be obeyed when the
object is referred to by means of a pointer to volatile.
If an aggregate object type is declared with the volatile type qualifier, the type of
each member of the aggregate is implicitly declared with that qualifier.
Example
The following declared object can be modified by an external process; but it cannot be
assigned to, incremented, or decremented explicitly by the program containing this
declaration:
See Also
Refer to “Cast Operator” and “Side Effects” in Section 5 for more information.
Declarators
Declarators introduce the name being declared and provide additional type
information. The types of declarators are listed as follows and are explained in this
section:
• Simple
• Pointer
• Array
• Function
Simple Declarators
The simple declarators define variables with a data type of arithmetic, structure, union,
and enumeration. A simple declarator is found in a declaration where the type qualifier
provides all the type information. The simplest declarator that can be written is a type
specifier such as int and a single identifier such as count.
In the following declaration, type is the type specifier such as int and identifier is
the declarator such as count. This declaration specifies that the variable named by
identifier has type indicated by type:
type indentifier;
Examples
The examples in the following table illustrate simple declarators:
Declaration Description
See Also
Refer to Section 2, “Types,” for more information on data types and data specifiers.
Pointer Declarators
Pointer declarators declare variables of pointer types. Declare a pointer by writing any
type qualifier, followed by an asterisk (*), followed by an identifier.
Type *identifier;
A pointer can be declared to point to a structure when the structure is not declared in
the same compilation unit. However, retrieving a value through such a pointer is illegal.
Examples
The examples in the following table illustrate the use of pointer declarators:
Declaration Description
See Also
• Refer to “Reading and Writing Complex Declarators” in this section for information
on reading declarators.
• Refer to “Pointer Types” in Section 2 for more information on pointers.
Array Declarators
Array declarators declare objects of array types. Write an array declarator as a type
and identifier followed by an array size in brackets ([ ]). The constant expression that
specifies the size of an array must have an integral type and a value greater than zero.
The constant expression must be present, except that the first size may be omitted
when
type identifier[constant-expression];
In the C language, arrays are zero-origin, which means the numbering of the elements
in the array starts at zero. For example, a program contains the following declaration:
The three integer elements in the array are number [0], number [1], and number
[2]..
Examples
The examples in the following table illustrate the use of arrays:
Declaration Description
See Also
Function Declarators
Function declarators declare function types. Write the function declarator as an
identifier followed by an argument list enclosed in parentheses.
There can be a declaration for a function that returns a pointer to a structure when the
structure is not defined in the same compilation unit. However, retrieving a value
through such a pointer is illegal.
Old style This method has been the method traditionally used in C. Using this
method, the default promotions of arguments are performed. The
number of arguments must match the number declared in the
function definition.
Function prototype The function prototype method causes the compiler to check the
types and number of arguments on subsequent function calls. Actual
arguments are promoted according to what is specified in the
function prototype. Calling a function declared with a prototype is
faster than calling an old style function.
See Also
Refer to “Old Style Format” and “Function Prototype Format” in Section 7 for more
information on defining functions.
Old Style
In an old style definition, an empty argument list means that the function has no
arguments. Otherwise, write the argument identifiers alone within the argument list.
Declare any arguments with argument level declarations immediately following the
declarator. The function body, enclosed in braces, terminates the argument level
declarations. Each argument can be declared at most once. Arguments can be
declared only at the argument level. If an argument is not declared, the compiler
implicitly declares it to have type int.
See Also
Refer to “Old Style Format” and “Function Prototype Format” in Section 7 for more
information.
Function Prototype
For a function with a fixed number of arguments, write a list of declarations, one for
each argument within the argument list. The types of the function arguments must be
provided in the argument list. The argument identifiers of the arguments may be
provided. Separate the declarations with commas. Each declaration can have only one
declarator. The compiler checks the types and number of arguments on a function call
in scope of a prototype. If the argument identifiers are supplied, their scope ends with
the end of the argument list or at the end of the body of the function if it is being
defined. They need not match identifiers used in redeclarations of the function.
To call a function with a variable length argument list, write a function prototype
whose argument list ends with a comma followed by an ellipsis. For example,
At least one argument must be specified in the function prototype. On a function call,
the compiler checks the types and number of all the arguments that were specified in
the function prototype. A function with more arguments than specified in the function
prototype may be called, but not a function with fewer arguments than specified. All
function calls must be in the scope of such a function prototype.
If a function is declared again, one of the declarators may be a function prototype and
the other an old style declaration. If both provide a function prototype, the number of
arguments and their types must be the same.
The definition and every prototype of a function must agree in the number and type of
the arguments and in the use of the ellipsis terminator. The argument type checking
includes agreement on the number of dimensions for arrays and on the bounds for
each dimension, including the first if it is specified.
See Also
Mixing Formats
Mixing old style declarations and prototype declarations for the same function is not
recommended. If you must mix formats, the following restrictions apply when mixing
old style and prototype declarations for the same function:
A function using the A function using the Ensure that the types of the
old style format function prototype actual arguments after the
format default argument promotions
agree with the types of the
formal arguments in the
function definition.
A function using the A function using the old Ensure that the function
function prototype style format prototype declares the formal
format arguments to be the same
types as used by the default
argument promotions, after the
promotions occur.
Except in the cases described in the preceding table, a function prototype must be in
the scope of the function call if the function is defined using the function prototype
format. Otherwise, the behavior is undefined.
All declarations of a particular function must declare the identical return type. Each
argument type list must agree in the number and types of the arguments and in the
use of the ellipsis terminator. The argument type checking includes agreement on the
number of dimensions of arrays and on the bounds for each dimension except the
first.
A function definition can serve as a declaration if, and only if, the definition appears in
the source file before any calls to that function.
See Also
Examples
The following examples illustrate old style and prototype declarations and definitions
of functions:
Declarations Description
See Also
• Refer to “Reading and Writing Complex Declarators” in this section for more
information on reading declarators.
• Refer to “Scope” and “Linkages” in Section 1 for more information.
• Refer to Section 7, “Functions,” for information on defining functions.
• Any type involving void, except “function returning voidö and “pointer to void.”
Refer to “Void Type” in Section 2 for more information.
• Arrays that contain functions.
Arrays can contain pointers to functions, but not functions themselves.
• Functions returning arrays.
Functions can return pointers to arrays, but not arrays themselves.
• Functions returning functions.
Functions can return pointers to other functions, but not the functions themselves.
The maximum number of declarators that can modify a basic type depends on the size
of the compiler’s internal data structures, typically over 100. For example, the
following declarator indicates that p is a pointer to a pointer to a pointer to a pointer
that points to a char.
char ****p
Any combination of pointer, array, and function declarators can be nested up to the
given limit.
Examples
The following are examples of complex declarations.
Declaration Description
Declarator Syntax
The syntax for declarators is as follows:
declarator :
pointeropt direct-declarator
direct-declarator
identifier
(declarator )
direct-declarator [ constant-expressionopt ]
direct-declarator ( parameter-type-list )
direct-declarator ( identifier-listopt )
pointer :
*type-specifier-listopt
*type-specifier-listopt pointer
type-specifier-list :
type-specifier
type-specifier-list type-specifier
parameter-type-list :
parameter-list
parameter-list , . . .
parameter-list :
parameter-declaration
parameter , parameter-declaration
parameter-declaration :
declaration-specifiers declarator
type-name
identifier-list :
identifier
identifier-list , identifier
Typedef Names
The typedef keyword defines a name as a synonym for a data type. Define the new
name of a type by starting the definition with the keyword typedef and following it
with a declaration. For example,
The identifier integer is defined as a synonym for int and can be used wherever a
type specifier is permitted.
The keyword typedef does not define a new type, but it does define a new name for
an existing basic or derived data type. The compiler treats variables declared with the
C name exactly as if they were declared to be of the type associated with the
typedef name.
A typedef name shares the same name space as other identifiers declared in ordinary
declarators. It can be declared again in an inner block, but the type specifiers cannot
be omitted in the inner declaration.
Examples
The following are examples of using the keyword typedef to define a name as a
synonym for a data type:
Typedef Description
funct intfn
{ . . . } /*error – not allowed */
int intfn(int x)
{ . . . } /*allowed*/
Type Equivalence
The statement “two objects must have the same type” refers to two types that are
the same if they have the same ordered set of type specifiers and abstract
declarators, either directly or indirectly by a typedef.
• Pointers
Two pointers, “pointer to type1” and “pointer to type2,” are the same if type1 and
type 2 are the same.
• Functions
Two functions, “function returning type1” and “function returning type2,” are the
same if type1 and type2 are the same and their argument information is the same.
• Arrays
Two arrays, “x-element array of type1” and “y-element array of type2,” are the
same if type1 and type2 are the same and both arrays have the same number of
elements (x = y).
− In those situations where the size of the array can be omitted, the size does
not participate in determining whether the two arrays are the same. If an array
is multidimensional and if the size of the first dimension can be omitted, then
only the first dimension does not participate. All other dimensions must
match. The following two external definitions declare the variable array alpha
and alphaII. They are considered to be the same type.
extern int alphaII [7]
extern int alpha[]
− In situations where the value of type “x-element array of type1” is converted
to a value of type “pointer to type1,” the rules for pointer equivalence apply
(the size of the array does not matter).
• Enumerations, structures, and unions
Two enumerations, structures, or unions are different if they have no names or
different names (taking tags and typedef synonyms into account), even if their
members are identical.
• Typedef names
Typedef names, by definition, are synonyms for types, not new types. Therefore,
in the following example, func is the same as the type int *():
typedef int *func()
See Also
Refer to “Array Types,” “Enumeration Types,” “Function Types,” “Pointer Types,”
“Structure Types,” and “Union Types” in Section 2 for more information.
Type Names
Write a type name in contexts where a type is specified without declaring an object of
that type. Such contexts occur for the following tasks:
A type name is syntactically a declaration for an object of that type that omits the
identifier of the object.
Examples
The following constructions name the corresponding types:
Construction Type
Syntax
The following syntax describes a type name:
type-name:
type-specifier-list abstract-declaratoropt
abstract declarator :
pointer
pointeropt direct-abstract-declarator
direct-abstract-declarator :
(abstract-declarator)
direct-abstract-declaratoropt [constant-expressionopt ]
direct-abstract-declaratoropt ( parameter-type-listopt )
See Also
Initializers
A declaration can specify an initial value for the identifier being declared. This initial
value is called the initializer. The following is the basic format of an initializer:
declarator = value
or
declarator = { list-of-values}
The initializer for an automatic variable need not be a constant expression. Automatic
variables are always declared at the head of a block. When entering the block, the
compiler produces code that evaluates the expression and assigns the result to the
variable.
If a declaration does not contain an initializer, static and external variables are initialized
to zero by default. Automatic variables are not initialized by default. If automatic or
register variables are not initialized, the contents are undefined.
Since some data types have special requirements, the following sections explain the
initializers for each type of data. The C language does not allow initialization of function
types and void type.
Syntax
The syntax of the initializers is
initializer :
assignment-expression
{ initializer-list }
{ initializer-list , }
initializer-list :
initializer
initializer-list , initializer
init-declarator:
declarator
declarator = initializer
See Also
or
Examples
The following examples illustrate the initialization of arithmetic variables:
#define MAX 50
int table = MAX+1
See Also
Initializing Pointers
The following elements form constant expressions used as initializers of type “pointer
to type.” The initializer for a pointer type must evaluate to an address, an address plus
(or minus) an integer constant, or the value zero (0).
Initializing a Pointer to NULL
The pointer constant zero (0) is the null value for any pointer type.
#define NULL 0
int *value_ptr = NULL;
In this example, the pointer iptr points to the fifth element of the array (array[4]).
In this example, the pointer cptr points to the character "N" in the string "STRING".
See Also
Initializing Arrays
The following is the basic format for the initialization of an array:
The Ij variables (for j = 0, 1, . . . n-1) are each initializers. The initializer Ij initializes the
element j in the array. All initializers of the array must have a type that is assignment
compatible with the array element type of the array. For example, the following array
is a single dimension array with five elements. The zero element of this array is
initialized to the integer 12:
int count[7] = { 0, 1, 2, 3, 4 };
int count[7] = { 0, 1, 2, 3, 4, 0, 0 };
int count[5]= { 0, 1, 2, 3, 4, 5 }
int matrix[3][4] = { { 1, 2, 3 },
{ 1, 2 },
{ 1 } };
int matrix[3][3][3] =
{ { { 1, 1, 1}, { 1, 1, 2}, { 1, 1, 3} },
{ { 1, 2, 1}, { 1, 2, 2}, { 1, 2, 3} },
{ { 1, 3, 1}, { 1, 3, 2}, { 1, 3, 3} },
{ { 2, 1, 1}, { 2, 1, 2}, { 2, 1, 3} },
{ { 2, 2, 1}, { 2, 2, 2}, { 2, 2, 3} },
{ { 2, 3, 1}, { 2, 3, 2}, { 2, 3, 3} },
{ { 3, 1, 1}, { 3, 1, 2}, { 3, 1, 3} },
{ { 3, 2, 1}, { 3, 2, 2}, { 3, 2, 3} },
{ { 3, 3, 1}, { 3, 3, 2}, { 3, 3, 3} } };
first element of the array, the second character, the second element, and so forth.
Remember that a string literal has at the end an implicit null character, which is stored
if there is room for it.
See Also
Initializing Structures
Static structures and external structures can be initialized. The member initializers
must be legal initializers for static or external variables of the member types. An
automatic structure can also be initialized with an expression of compatible structure
type.
struct employee {
char name[20];
int number;
int salary;
int start_date;
} new_hire = { "John L. Smith", 33425, 26000, 860301 };
struct test {
int score;
int max;
int min;
} first = { 89, 100, 0 };
struct test {
int score;
int max;
int min;
} first = { 89, 100 };
See Also
Refer to “Structure Types” in Section 2 for more information on structures..
Initializing Unions
For a union object, the initializer initializes the member that appears first on the
declaration list. The initial value must be a legal value for the type of the member being
initialized. The rules for constant expression initializers are the same as for structures.
Example
The following example illustrates the initialization of a union variable:
See Also
Refer to “Union Types” in Section 2 for more information on unions.
Implicit Declarations
Explicit specification of the storage class and type of an identifier is not always
needed in a declaration. The C compiler can determine the storage class from the
context in declarations of formal parameters and structure members. If a declaration
inside a function specifies a storage class, but not a type, the compiler assumes the
type of the identifier is int. If a declaration inside a function specifies a type, but not a
storage class, the compiler assumes the storage class of the identifier to be
auto. Functions are the exception to this rule; auto functions are meaningless. If the
type of the identifier is “function returning type”, it is implicitly declared to be extern.
error ()
{
z(i,j);
}
If z was not declared, the compiler implicitly inserts the following declaration at the
beginning of the enclosing block:
See Also
Refer to “Defining Functions” in Section 7 for more information.
To avoid confusion, the C language distinguishes between the definition and the
declaration of the external variable:
Declaration The nature of the variable is stated, but not allocated storage.
External variables are defined at the top level of the program (outside any function).
The definition states the type and storage class of the external variable. The definition
must not say extern. The compiler allocates storage to the external variable at this
time. The syntax of a definition is the same as a declaration; however, since it occurs
outside a function, the variable is external. To use this variable inside a function, the
name of the variable must be known to the function or within the name scope. To
make the variable known to the function, the variable is declared inside the function
with the extern keyword.
In the C language, it is difficult to distinguish between the defining declaration and the
external or internal linked declarations. Most C programmers use the following rules
to help them separate the definition of a variable from its declaration:
• Define all external variables at a single definition point in a source file. Do not
include the extern storage class specifier in the definition, but include an explicit
initializer.
• Within each function that references the external variable, declare the variable
with the extern keyword, but do not supply an explicit initializer.
• Declarations with extern can be declared repeatedly at file level. The declarations
must be identical.
Following these rules makes an A Series C program compatible with many other C
compilers.
Examples
The following examples illustrate the definition and declaration of external variables:
Summary of Declarations
Refer to the appropriate section for more information on the storage class, type,
declarators, or initializers.
typedef unsigned
short
inline int
signed int
unsigned int
long int
signed long
unsigned
long
float
double
long double
structure
union
enumeration
A value may be explicitly converted from one type to another type with the cast
expression.
int i;
float f = 1.5; /* The floating-point value 1.5 is changed to */
i = f; /* value 1 the integer */
Notes:
See Also
Refer to “Cast Operator” in Section 5 for more information.
Integral to Integral
The general rule for converting an integral type to another integral type is to preserve
the mathematical value. For example, if an unsigned int value of 73 is converted to
type signed int, the resulting value is also 73.
Conversion between types with the same representation does not change the value.
The following lists the value changes when converting between types:
Note: Converting a signed integer into an unsigned integer then back to a signed
integer produces the same mathematical value for nonnegative values. Negative
values put through the same conversions can result in positive values.
Floating-Point to Integral
The conversion of a floating-point value to an integral value truncates any fractional
part of the floating value. When a negative floating-point value is converted to an
integer, the result is the smallest integer not less than the floating-point value. For
example, -2.8 is converted to -2.
The conversion is undefined if the magnitude of the floating-point value is too large for
the integral type.
Pointer to Integral
A pointer can be converted to an integral value; however, since this is not portable,
when the compiler detects it a warning is issued.
The conversion of a null pointer to an integral value is a special case. A null pointer is a
pointer that never points to any object or function. Create a null pointer through
explicit assignment or by initializing it to zero. Converting zero to a pointer results in
the null pointer. Converting a null pointer to an integral results in 0.
Example
int *p;
p = NULL;
p == 0; /* will be 1 (true) */
Floating-Point to Floating-Point
The general rules for converting floating-point type are as follows:
float or double long double The result value is the same as the
original value.
Integral to Floating-Point
For this implementation, the floating-point type can exactly represent all integral
values. Therefore, the result is the equivalent floating-point value of the integral value.
Structure to Structure
A structure object can be converted only to another structure that has compatible
type as the original structure.
The conversion does not change the representation. However it may not preserve the
bit patterns in any unused portions or “holes” in the structure.
Union to Union
A union object can be converted only to another union that has compatible type as the
original union.
The conversion does not change the representation. However, it may not preserve the
bit patterns in any unused portions or “holes” in the union.
Pointer to Pointer
A null pointer constant of any type can be converted to any pointer type. It is still
recognized as a null pointer. With this C compiler, the conversion does not change its
representation. A null pointer is a pointer that never points to any object or function.
See Also
Refer to “Cast Operator” in Section 5 for more information.
Integral to Pointer
Integral values can be converted to pointer types. However, the result of these
conversions is not portable.
An integral constant expression with the value of zero (0) or such an expression cast
to type void * is called a null pointer constant. If a null pointer constant is assigned to
or compared for equality to a pointer, the constant is converted to a pointer of that
type. Such a pointer, called a null pointer, is never points to any object or function.
Array to Pointer
The expression “array of type” is converted to a value of type “pointer to type” by
substituting for the expression a pointer to the first element of the array.
See Also
Refer to “Sizeof Operator” in Section 5 for more information.
Function to Pointer
An expression of type “function returning type” is converted to a value of type
“pointer to function returning type” by substituting for the expression a pointer to the
function. The two exceptions to this conversion are:
void
However, the result of a conversion cannot be used for anything. This conversion can
be used when an expression value is to be discarded, such as in an expression
statement.
See Also
Refer to “Expression Statements” in Section 6 for more information.
Examples
The following examples illustrate cast expressions. Given the following definitions and
declarations:
int i, *ip;
char *cp;
See Also
Refer to “Cast Operator” in Section 5 for more information.
Assignment Conversions
In an assignment expression, the type of the expression on the left of the assignment
operator should be the same as the type of the expression on the right. If the
expressions are not the same type, the compiler attempts to convert the value on the
right side of the expression operator to the type of the value on the left side. The
following conversions are legal:
See Also
Refer to “Assignment Operators” in Section 5 for more information.
Step If . . . Then . . .
Otherwise, the integral promotions are performed on both operands. If this is the
case, then the following rules apply:
Step If . . . Then . . .
4 The compiler reaches this step Both operands are of type int.
• Expressions
• Operators
Expressions
• Type
• Class
Type of an Expression
Every expression or subexpression has a type. If the expression is an identifier, its
type is determined when it is declared. If an expression is a constant, the rules for
typing constants determine its type. If an expression is enclosed in parentheses, its
type is that of the expression in parentheses.
Example
For example, the following expression has the constant operands 2.4 with type
double, 3L with type long, and 2 with type int. Subtracting a value of type int from a
value of type long gives a result of type long. Adding a value of type long to a value
of type double gives a result of type double. So the type of this expression is the type
of the addition operator, which is type double.
2.4 + (3L - 2)
See Also
Refer to “Constants“ in Section 1 for more information on the different types of
constants.
Class of an Expression
Every expression or subexpression is in one of four classes:
Determine the class of an expression by starting with the simplest subexpression and
working up through the operators. Enclosing an expression in parentheses does not
change its class.
void Expression
A void expression is an expression whose type is void. As discussed previously, the
compiler evaluates void expressions for their side effects only. An example of a
void expression is the C standard library function srand(0). The srand function
provides an initial value for a random number generator. The srand function has type
“function returning void.” If any other class of expression occurs where the compiler
expects a void expression, the compiler evaluates it and discards the result. The
function printf, for example, returns a value every time a program calls it, but the
expression that calls it often discards that value.
Lvalue
An object is a region of storage that can be examined and altered. An lvalue is the
value of an expression or the result of an expression that refers to the location of the
object.
The term “lvalue” originally came from the following assignment expression:
E1 = E2
The expression E1 is called an lvalue because it can be used on the left side of the
assignment expression. Today, however, an lvalue is more difficult to define. An lvalue
can also be called a “data object locator.” It designates the location of a data object
for the purposes of obtaining its address, obtaining its stored value, or altering its
stored value.
The following forms of expressions are legal when used where the compiler requires
an lvalue:
Expression Description
• Names of arrays
• Names of functions
• Names of enumeration constants
A modifiable lvalue is an lvalue that does not have array type and does not have a type
declared with the const type qualifier.
Gray Code
Gray code is where an lvalue is both accessed and modified in an expression and the
order of the access and modify operations is indeterminate. The following expressions
all have gray code:
a + (a = 3)
(a++) + a
vec [a++] = a
(a = 3) + (a = 4)
a = a + 1
a++, vec[a]
a, vec [a++]
Rvalue
An rvalue is an expression that permits examination, but not alteration of a value. The
term “rvalue” originally came from the following assignment expression:
E1 = E2
The expression E2 is called the rvalue because it can be used on the right side of an
assignment expression.
The following forms of expressions are legal when used where an rvalue is required
Expression Description
Function Locator
A function locator is an expression that has function type. If an identifier declared as a
function locator appears in a context other than as an operand that can or must be a
function locator, it is converted to a pointer.
See Also
Primary Expressions
The primary expressions are as follows:
The type of the parenthesized expression is the same as the enclosed expression. The
compiler does not perform any conversion just because the expression is enclosed in
parentheses. The value of the parenthesized expression is the value of the enclosed
expression. If the enclosed expression is an lvalue, the parenthesized expression is an
lvalue; if the enclosed expression is a function locator, the parenthesized expression is
a function locator.
Examples
This expression shows an override of default operator precedence:
a = b * ( c + d );
( a ) = b;
See Also
Refer to “Constants” and “Identifiers” in Section 1 for more information.
Constant Expressions
A constant expression is an expression that the compiler can reduce to a known value
before it reads any more of the source file.
If the expression is evaluated by the compiler, the arithmetic precision and range are
at least as great as if the expression were being evaluated in the execution
environment.
For constant expressions in initializers, floating-point constants and arbitrary casts can
be used in addition to integral constant expressions. Lvalues and objects that have
static storage duration or function identifiers can also be used to specify addresses,
explicitly with the unary & operator or implicitly for unsubscripted array identifiers or
function identifiers. A constant difference in the addresses of two members of the
same aggregate can be used.
See Also
Side Effects
A side effect is a change in the value stored in a data object or a change in the state of
a file as a byproduct of evaluating an expression. Function calls, the increment and
decrement operators, and the assignment operators all cause side effects. A C
program evaluates some expressions, known as “void expressions,” only for their
side effects. A void expression either has no value because its type is void or the
program discards its value.
printf("hello world\n")
++a
a = 1
If an expression has more than one side effect, the order in which the program
evaluates any subexpressions can yield unexpected results. In many cases the C
language does not restrict order of evaluation enough to make the evaluation of such
expressions completely predictable
For example, a program can evaluate the arguments of the following function call in
arbitrary order, so there is no way of precisely determining the values of the
arguments passed to the function:
f(++a, ++a)
As a general rule, avoid writing expressions with more than one (related) side effect.
Similarly, in the following expression, the first input character is stored in c1 and the
second in c2:
c1 = getchar(), c2 = getchar()
An expression involving more than one occurrence of the same commutative and
associative binary operators ( * + & ^ | ) can be regrouped arbitrarily,
provided the types of the operands or of the results are not changed by this
regrouping. To force a particular grouping of operations, either the value of the
expression to be grouped can be explicitly assigned to an object or parentheses can
be used to group the operations.
The descriptions of the operators later in this section state any restrictions concerning
the order of evaluation for a given operator.
Discarded Values
In the following contexts, the compiler evaluates an expression, but discards its
values:
• An expression statement
• The first operand of a comma expression
• The initialization and incrementation expressions in a for statement
See Also
Refer to “for Statement” in Section 6 for more information.
• Generate code that has computational behavior similar to the source code
• Rearrange code
The compiler might not generate any code for an expression if the expression has no
side effects and its value is discarded.
See Also
Refer to “Discarded Values” in this section for more information.
Operators
An operator generates a value by performing a defined operation on one or more
operands. An operand can consist of declared identifiers, constants, function calls,
array elements, and structure or union members. The value of an operand replaces its
reference in an expression. After the values are replaced, the operator then performs
its operation on these values.
Table 5–1 lists the operators used in expressions. These operators are listed under
their functional categories. Each of these operators is described in detail later in this
section.
Modulo operator %
Increment operator ++
Decrement operator --
Unary minus operator -
Unary plus operator +
Assignment Operators
Operator Name Operator Symbol
Simple assignment operator =
Compound assignment operators += -= *= /= %=
<<= >>= &= ^= |=
Bitwise negation operator ~
Bitwise AND operator &
Bitwise exclusive OR operator ^
Bitwise inclusive OR operator |
Operator Name Operator Symbol
Bitwise left shift operator <<
Bitwise right shift operator >>
Equality Operators
Operator Name Operator Symbol
Equal to operator ==
Not equal to operator !=
Logical Operators
Operator Name Operator Symbol
Logical negation operator !
Logical AND operator &&
Logical OR operator ||
Relational Operators
Operator Name Operator Symbol
Greater than operator >
Greater than or equal to operator >=
Less than operator <
Less than or equal to operator <=
Miscellaneous Operators
Operator Name Operator Symbol
Function call operator ()
Type cast operator (type)
Conditional expression operator ?:
Comma operator ,
The compiler groups the operand with the operator that has the highest precedence.
If two operators have the same precedence, the compiler groups the operator with
the left or right operand depending on the associativity of the operator. The compiler
groups the operand with the right operator if the operator is right-associative and with
the left operator if the operator is left-associative.
Table 5–2 shows the precedence level (highest to lowest, in order) and the rules of
associativity of operators. The operators grouped within the same table cell have
equal precedence.
Examples
The following two expressions are the same because the division operator (/) has
higher precedence than the addition operator (+):
a / b + c
(a / b) + c
The following two expressions are the same because the multiplication operator (*)
has higher precedence than both the bitwise inclusive OR (|) and the bitwise AND (&)
operators. The bitwise AND operator (&) has higher precedence than the bitwise
inclusive OR operator (|):
a | b & c * d
a | ( b & ( c * d) )
The following two expressions are the same because the operators have the same
level of precedence. The compiler uses the rules of associativity to group the
operators. The operand b is grouped with a because the associativity of the remainder
operator (%) and the multiplicative operator (*) is left to right:
a % b * c
(a % b) * c
The following two expressions are the same because the associativity of the
assignment operator (=) and the multiply assignment operator (*=) is right to left.
a = b *= c
a = (b *= c)
int x[3][5];
However, be careful not to write an expression such as b[i,7]. This expression is not
equivalent to b[i][7]. The comma operator (,) causes the compiler to evaluate i as a
void expression, so its value is discarded. The resulting subscript is the right operand
of the comma operator, giving an expression equivalent to b[7]. The only way to write
multiple subscripts is to enclose each in its own square brackets.
See Also
Refer to “Array Types” and “Integer Types” in Section 2 for more information.
pointer-> member
(*pointer).member
See Also
Refer to “Structure Types” and “Union Types” in Section 2 for more information.
Indirection Operator
The unary indirection operator (*) indicates indirection.
An expression associated with the unary indirection operator must be a pointer. If the
operand is an object pointer that points to a valid object, the result is an lvalue that
refers to the object. If the operand is a function pointer that points to a valid function,
the result is a function locator.
If the type of the expression is “pointer to type,” the type of the result is “type.”
If an invalid value has been assigned to the pointer, the behavior of the unary
indirection operator (*) is undefined. Such invalid values include the following:
See Also
Refer to “Pointer Types” in Section 2 for more information on pointers.
See Also
Refer to “Structure Types” and “Union Types” in Section 2 for more information.
Address Operator
The address-of operator (&) returns a pointer to its operand.
&lvalue
The operand must be an lvalue. The C language does not allow application of the
address-of operator (&) to a register variable or a bit field.
If the type of the operand is “type,” the type of the result is “pointer to type.”
See Also
• Refer to “Bit Fields” and “Pointer Types” in Section 2 for more information.
• Refer to “Storage Class Specifiers” in Section 3 for more information.
sizeof Operator
The sizeof operator returns the size in storage units (bytes) of its operand. A sizeof
expression has two forms:
The expression sizeof expression returns the same result as if it had been applied to
the name of the type of the expression. The sizeof operator does not itself cause any
of the usual arithmetic conversions to be applied to expression. But if expression
contains operators that perform arithmetic conversions, those conversions are then
considered when determining the type.
The expression sizeof (type-name) returns the size of an object of the type named in
parentheses. The type name cannot name an array type with no explicit length, a
function type, or the type void.
When applied to an operand that has type char, unsigned char, or signed char, the
result is 1. When applied to an operand that has an array type, the result is the total
number of bytes in the array. When applied to an operand that has structure or union
type, the result is the total number of bytes in the object, including whatever internal
and trailing padding might be needed to align each member in such a structure or
union properly.
The size of a string literal includes the terminating null character implicit on all string
literals.
The implementation of the alloc function must ensure that its return value is aligned
correctly for conversion to a pointer to double.
Another use of the sizeof operator is to compute the number of members in an array
as in the following example:
See Also
Refer to “Array Types,” “Function Types,” “Pointer Types,” “Structure Types,” “Union
Types,” and “Void Type” in Section 2 for more information.
Arithmetic Operators
The following arithmetic operators are discussed:
Addition Operator
The binary plus sign operator (+) indicates addition. Both operands can have
arithmetic types or one operand can have “pointer to data” type and the other can
have integral type. The result of the binary plus sign operator (+) is the sum of the
operands. The result is not an lvalue.
The usual arithmetic conversions are performed on the operands. If both operands
have arithmetic type, the type of the result is that of the converted operands. For
integer operands, integer addition is performed. For floating-point operands, floating-
point addition is performed.
A pointer to an object in an array and a value of any integral type can be added. The
integral value is converted to an address that is offset by multiplying it by the size of
the object pointed to. The result is the same type as the original pointer. If the original
pointer points to a member of an array object, the result points to another member of
the same type array object, appropriately offset from the original member. Thus, if P
points to a member of an array object, the expression P + 1 points to the next
member of the array object. Unless both the pointer operand and the result point to a
member of the same array object, the behavior is undefined if the result is used as the
operand of a unary * operator.
The binary plus sign operator (+) is commutative and associative. The compiler may
regroup expressions involving several additions at the same level. For example, given
the following expression:
a + b + c + d
( d + c ) + ( b + a )
In the event of overflow, the binary + operator may produce unpredictable results if
the operands, after conversion, are signed integers, floating-point numbers, or
pointers. By definition, overflow does not occur for unsigned integers.
Subtraction Operator
The binary minus sign (-) operator indicates subtraction.
The usual arithmetic conversions are performed on the operands. If both operands are
arithmetic, the type of the result is that of the converted operands. For integer
operands, integer subtraction is performed. For floating-point operands, floating-point
subtraction is performed.
A pointer to an object in an array and a value of any integral type can be subtracted.
The integral value is converted to an address that is offset by multiplying it by the size
of the object pointed to. The result is the same type as the original pointer. If the
original pointer points to a member of an array object, the result points to another
member of the same type array object, appropriately offset from the original member.
Thus if P points to a member of an array object, the expression P - 1 points to the
previous member of the array object. Unless both the pointer operand and the result
point to a member of the same array object, the behavior is undefined if the result is
used as the operand of an indirect member selection operator (*).
In the event of underflow, the binary minus sign operator (-) may produce
unpredictable results if the operands, after conversion, are signed integers, floating-
point numbers pointer. By definition, underflow cannot occur for unsigned integers.
See Also
Multiplication Operator
The binary multiplication operator (*) indicates multiplication. Each operand must have
an arithmetic type. For integer operands, integer multiplication is performed. For
floating-point operands, floating-point multiplication is performed. The usual arithmetic
conversions are performed on the operands. The result of the binary multiplication
operator (*) is the product of the operands. The result is not an lvalue.
The binary multiplication operator (*) is commutative and associative. The compiler
may regroup expressions involving several multiplications at the same level. For
example, given the following expression:
a * b * c * d
( d * c ) * ( b * a )
In the event of overflow, the binary multiplication operator (*) may produce
unpredictable results if the operands, after conversion, are signed integers or floating-
point numbers. By definition, there is no overflow for unsigned integers.
Division Operator
The binary division (/) operator indicates division. The result of the binary division
operator is the quotient of the operands. The result is not an lvalue. Each operand
must have an arithmetic type.
In the event of overflow, the binary division operator (/) may produce unpredictable
results. Overflow cannot occur if the operands are integers.
Remainder Operator
The binary remainder operator (%) computes the remainder from the division of the
first operand by the second operand. Each operand must have an integral type. The
usual arithmetic conversions are performed on the operands. The type of the result is
that of the converted operands. The result is not an lvalue.
When integer operands are positive, the result is positive. If one of the operands is
negative, the sign of the result of the remainder operator (%) is the same as the
dividend.
See Also
Increment Operator
The increment operator (++) enables incrementing of an operand by a value of one. The
following are the two forms of increment operators:
Prefix The operator in the prefix form occurs to the left of the
operand and the operand is incremented before its value
is substituted in the expression.
Postfix The operator in the postfix form occurs to the right of the
operand and the operand is incremented after
substituting its original value in the expression.
The prefix increment operator (++) performs an “increment before” operation. A prefix
increment is an operation that produces side effects. The prefix increment operator
does the following:
x = x + 1
++(x)
(x) += 1
The operand of the prefix increment operator must have a scalar type and must be a
modifiable lvalue. The result of the prefix increment is the new value of the operand,
after it was incremented. The result is not an lvalue.
The usual arithmetic conversions are performed on the operand and the constant 1
before the addition is performed. The usual assignment conversions are performed
when storing the sum back into the operand. The type of the result is that of the lvalue
operand before the conversion.
The prefix increment operator can produce unpredictable effects if overflow occurs
and the operand is a signed integer or floating-point number. If the PORT(UNSIGNED)
suboption is set, then the result of incrementing the largest representable value of an
unsigned type is 0.
If the operand is a pointer, the prefix increment operator moves the pointer forward
beyond the object pointed to, as if to move the pointer to the next element within the
array of objects.
See Also
• Refer to Section 2, “Types,” for more information.
• Refer to Section 10, “Compiler Control Options,” for more information on the
PORT option.
The postfix increment operator (++) performs an “increment after” operation. A postfix
increment is an operation that produces side effects. The postfix increment operator
does the followingAdds the constant 1 to the value of the operand.
• Stores the incremented value into the operand, modifying it.
The operand of the postfix increment operator must have a scalar type and must be a
modifiable lvalue. The result of the postfix increment is the old value of the operand,
before it was incremented. The result is not an lvalue.
The usual arithmetic conversions are performed on the operand and the constant 1
before the addition is performed. The usual assignment conversions are performed
when storing the sum back into the operand. The type of the result is that of the lvalue
operand before the conversion.
The postfix increment operator can produce unpredictable effects if overflow occurs
and the operand is a signed integer or floating-point number. If the PORT(UNSIGNED)
suboption is set, then the result of incrementing the largest representable value of an
unsigned type is 0.
If the operand is a pointer, the postfix increment operator moves the pointer forward
beyond the object pointed to, which positions the pointer on the next element within
the array of objects. The value of the expression is the pointer before incrementation.
See Also
Decrement Operator
The decrement operator (--) enables decrementing of an operand by a value of one.
The following are the two forms of decrement operators:
Prefix The operator in the prefix form occurs to the left of the
operand and the operand is decremented before its
value is substituted in the expression.
Postfix The operator in the postfix form occurs to the right of
the operand and the operand is decremented after
substituting its original value in the expression.
The prefix decrement operator (--) performs a “decrement before” operation. A prefix
decrement is an operation that produces side effects. The prefix decrement operator
does the following:
x = x - 1
--(x)
(x) -= 1
The operand of the prefix decrement operator must have a scalar type and must be a
modifiable lvalue. The result of the prefix decrement is the new value of the operand
after it was decremented. The result is not an lvalue.
The usual arithmetic conversions are performed on the operand and the constant 1
before the subtraction is performed. The usual assignment conversions are performed
when when the difference is stored back into the operand. The type of the result is
that of the lvalue operand before the conversion.
The prefix decrement operator can produce unpredictable effects if underflow occurs
and the operand is a signed integer or floating-point number. If the PORT(UNSIGNED)
suboption is set, then the result of decrementing the value 0 of an unsigned integer
type is the largest representable value of that type.
If the operand is a pointer, the prefix decrement operator moves the pointer back over
the object pointed to, which positions the pointer on the previous element within the
array of objects. The value of the expression is the pointer after modification.
See Also
The operand of the postfix decrement operator must have a scalar type and must be a
modifiable lvalue. The result of the postfix decrement is the old value of the operand,
before it was decremented. The result is not an lvalue.
The usual arithmetic conversions are performed on the operand and the constant 1
before the subtraction is performed. The usual assignment conversions are performed
when storing the difference back into the operand. The type of the result is that of the
lvalue operand before the conversion.
If the operand is a pointer, the postfix decrement operator moves the pointer back
over the object pointed to, which positions the pointer on the previous element within
the array of objects. The value of the expression is the pointer before decrementation.
See Also
- expression
The expression can be any arithmetic type. The integral promotions are performed on
the operand. The result has the promoted type and is not an lvalue.
The unary minus expression -E is the same as the expression (0 - E). The two
expressions return the same result.
+ expression
The expression can be any arithmetic type. The integral promotions are performed on
the operand. The result has the promoted type and is not an lvalue.
The unary plus expression +E is the same as the expression (0 + E). The two
expressions return the same result.
See Also
Refer to “Pointer Arithmetic” in Section 2 for more information.
Assignment Operators
The two classifications of assignment operators are
The assignment operator modifies the object designated by the left operand by
storing a new value into it. The compound operators differ in how they compute the
new value to be stored.
The assignment operators are all at the same level of precedence. However, unlike all
other binary operators in the C language, the assignment operators associate right to
left.
Examples
These examples illustrate right associativity.
i = j = 0;
i = ( j = 0 );
( i = j ) = 0;
Both of the operands must have arithmetic type or both must have the same
structure, union, or pointer type. In addition, if either operand is an object pointer, the
other operand can have type “pointer to void.” Also, if the left operand is a pointer,
the right operand can be a null pointer constant.
If both operands have arithmetic type, the right operand is converted to the type of
the left operand before the assignment. If the left operand is a pointer and the right
operand is an integral constant expression with the value 0, the constant is converted
into a null pointer.
The type of the result is equal to the unconverted type of the left operand. The result
is the value stored into the left operand. The result is not an lvalue.
If an object is assigned to another object that overlaps in storage with any part of the
object being assigned, the behavior is undefined.
int f(void);
char c;
((c = f( )) == -1)
The int value returned by the function is converted to a char by truncation, then
stored in c, and finally converted back to int prior to the comparison. In this C
language implementation, a plain char behaves the same as an unsigned char; the
result of the conversion cannot be negative. The operands of the comparison can
never compare as equal. Therefore, for full portability, the variable c should be
declared as int.
See Also
Refer to “Pointer Types,” “Structure Types,” and “Union Types” in Section 2 for more
information.
+= -= *= /= %=
The following compound assignment expressions are the same. However, E1 in the
second expression is evaluated only once.
E1 op = E2
E1 = E1 op (E2)
Table 5–3 lists the allowable types for the compound assignment operators.
+= -= Arithmetic †
*= /= %= Arithmetic
<<= >>= &= ^= |= Integral
† Also, the left operand can be a pointer and the right operand can be an
integral type.
The type of the result is equal to the (unconverted) type of the left operand. The result
is the value stored into the left operand. The result is not an lvalue.
See Also
Refer to “Pointer Arithmetic” and “Integer Types” in Section 2 for more information.
Bitwise Operators
The following bitwise operators are discussed:
An expression associated with the bitwise negation operator must have an integral
type. The usual arithmetic conversions are performed on the operand. The result has
the promoted type and is not an lvalue.
See Also
Both operands must have integral type. The usual arithmetic conversions are
performed on the operands. The type of the result is the type of the converted
operands. The result is not an lvalue.
The result of the binary bitwise AND operator (&) is the bitwise AND of the operands.
Each bit in the result is set if and only if each of the corresponding bits in the
converted operands is set. That is, if both bits are 1, the bit in the result is a 1.
Otherwise, the bit in the result is a 0. For signed types, the sign bit and the 39 bits for
the magnitude are affected; for unsigned types, only the 39 bits for the magnitude are
used.
The binary bitwise AND operator (&) is commutative and associative. The compiler may
regroup an expression involving several binary bitwise AND operations at the same
level.
See Also
• Refer to “Integer Types” in Section 2 for more information.
Both operands must have integral type. The usual arithmetic conversions are
performed on the operands. The type of the result is the type of the converted
operands. The result is not an lvalue.
The result of the binary exclusive OR operator (^) is the bitwise exclusive OR of the
operands. Each bit in the result is set if, and only if, exactly one of the corresponding
bits in the converted operands is set. That is, if exactly one bit is a 1, the bit in the
result is a 1. If both bits are 1 or if both bits are 0, the result bit is a 0. For the signed
types, the sign bit and the 39 bits for the magnitude are affected; for unsigned types,
only the 39 bits for the magnitude are used.
The binary bitwise exclusive OR operator (^) is commutative and associative. The
compiler may regroup an expression involving several binary exclusive OR operations
at the same level.
See Also
Both operands must have integral type. The usual arithmetic conversions are
performed on the operands. The type of the result is the type of the converted
operands. The result is not an lvalue.
The result of the binary bitwise inclusive OR operator (|) is the bitwise inclusive OR of
the operands. Each bit in the result is set if and only if at least one of the
corresponding bits in the converted operands is set. That is, if one of the bits is a 1,
the bit in the result is a 1. If both bits are 0, the result bit is a 0. For signed types, the
sign and the 39 bits for the magnitude are affected; for unsigned types, only the 39
bits for the magnitude are used.
The binary bitwise inclusive OR operator (|) is commutative and associative. The
compiler may regroup an expression involving several binary bitwise inclusive OR
operations at the same level.
See Also
The first operand is the quantity to be shifted. The second operand is the number of
bits that the first operand is shifted. The result of E1 << E2 is that E1 (interpreted as a
bit pattern) is left-shifted E2 bit positions. Vacated bits are zero-filled. Only the 39 bits
for the magnitude are affected; the sign bit is not changed.
The result of the expression E1 >> E2 is that E1 (interpreted as a bit pattern) is right-
shifted E2 positions. If E1 is a signed or unsigned type, the right shift is logical (zero-
filled). Only the 39 bits for the magnitude are affected; the sign bit is not changed.
Both operands must have an integral type. The usual binary conversions are not
performed on shift operators, but the integral promotions are performed separately
on each operand. After the unary conversions are performed, the right operand is
converted to int. The type of the result is that of the promoted left operand. If the
right operand is negative or greater than or equal to the width in bits of the promoted
left operand, the result is undefined.
The two bitwise shift operators have the same precedence and are left-associative.
See Also
Refer to “Integer Types,” “Character Type,” and “Enumeration Types” in Section 2 for
more information.
Equality Operators
• == equal to
• != not equal to
The result of the equal to operator (==) and the not equal to operator (!=) is 1 if the
specified relation is true. The result is 0 if the specified relation is false. The result has
type int and is not an lvalue.
The binary equality operators have a lower precedence than the relational operators.
But like the relational operators, they are left-associative.
Note: Do not confuse the = operator with the == operator. The = operator performs
simple assignment. The == operator performs equality comparisons.
See Also
Refer to “Pointer Arithmetic,” “Enumeration Types,” and “Pointer Types” in Section 2
for more information.
Logical Operators
The following logical operators are discussed:
See Also
The result of the logical AND operator is one if both of the operands evaluate to
nonzero. The left operand is evaluated first. If the left operand is zero, the right
operand is not evaluated, and the result is zero. If the left operand does not equal
zero, the right operand is evaluated. If the right operand is equal to zero, the result is
zero. If the right operand is not equal to zero, the result is one.
Unlike the binary bitwise AND operator (&), the logical AND operator (&&) guarantees
left-to-right evaluation and is a sequence point.
See Also
Refer to Section 2, “Types,” for more information.
Logical OR Operator
The logical OR operator (||) performs a logical OR operation.
Both operands must have scalar types. The type of the result is int and the value is
zero or one. The result is not an lvalue.
The result of the logical OR operator is one if either of the operands evaluates to
nonzero. The left operand is evaluated first. If the left operand is not equal to zero, the
right operand is not evaluated, and the result is one. If the left operand does equal
zero, the right operand is evaluated. If the right operand is not equal to zero, the result
is one. If the right operand is equal to zero, the result is zero.
Unlike the binary bitwise inclusive OR operation (|), the logical OR operator (||)
guarantees left-to-right evaluation and is a sequence point.
See Also
Refer to Section 2, “Types,” for more information.
Relational Operators
The four relational operators are
Both operands can have an arithmetic type or the same pointer type. If both of the
operands have arithmetic type, the usual arithmetic conversions are performed.
The result of each of the less than operator (<), the greater than operator (>), the less
than or equal to operator (<=), and the greater than or equal to operator (>=) is 1 if the
specified relation is true. The result is 0 if the specified relation is false. The result has
type int and is not an lvalue.
The expression a < b < c is not interpreted as in ordinary mathematics. As the syntax
indicates, the expression is (a < b) < c. In other words, it means “if a is less than b,
compare 1 to c; otherwise, compare 0 to c.”
The binary inequality operators all have the same precedence and are left-associative.
See Also
Miscellaneous Operators
The following operators are discussed:
x(y)
(*x)(y)
(****x)(y)
If a declaration is not in scope for an identifier that is first used as the expression in a
function call, the identifier is implicitly declared exactly as if the following declaration
appeared in the innermost block containing the function call:
extern int x () ;
That is, the function is implicitly declared with external linkage and has no information
about its arguments and has type returning int.
A function definition can serve as a declaration if and only if the definition appears in
the source file before any calls to that function.
If the type of the function expression is “pointer to function returning type,” the result
of the function call is of type type. The result of a function call is not an lvalue. If type
is void, the function call does not produce a result. Such a function cannot be used in a
context that requires the call to yield a result. A function can return a value of any type
of object, except array or function.
If a function prototype declarator is in scope, the actual arguments are compared with
the formal arguments and are converted accordingly. An argument that has array or
function type is converted to a pointer. The ellipsis notation in a function prototype
declarator causes argument type checking to stop after the last declared formal
argument. Unchecked arguments are converted as if the function prototype declarator
were not in scope.
If a function prototype declarator is not in scope, the compiler passes the following:
If the number of actual arguments or their types after conversion do not agree with
those of the formal arguments in the function definition, the behavior is undefined.
If a function prototype declarator is not in scope, the compiler may issue a diagnostic
message if the number of actual arguments does not match the number of formal
arguments of the function being called. The compiler also may issue a diagnostic
message or take any special action if the (converted) type of an actual argument does
not match the (promoted) type of the corresponding formal argument.
An argument can be any expression other than a void expression. In preparing for the
call to a function, each actual argument is evaluated and each formal argument is
assigned the value of the corresponding actual argument. If the number of actual
arguments or their types after conversion do not agree with those of the formal
arguments, the behavior is undefined.
A copy is made of each actual argument after it has been evaluated and converted. All
arguments are passed by value. Within the called function, the names of the formal
arguments are lvalues. A function can change the values of its formal arguments.
Changing a formal argument only changes the value of the formal argument and does
not affect the actual argument.
When a pointer is passed as an argument, a copy is made of the pointer itself. A copy
is not made of the object the pointer is pointing to. By using pointers, a called function
can modify an object supplied by the caller.
Do not mix old style declarations and definitions with prototype declarations and
definitions of the same functions.
Declare a function using the old style and define the function with the function
prototype format if, and only if, the types of the actual arguments after promotion
agree with the types of the formal arguments in the function definition.
Declare a function using the function prototype format and define the function using
the old style format if, and only if, the function prototype declares the formal
arguments to be the same type as used by the default argument promotions, after the
promotions occur.
Except in the cases just described, a function prototype must be in scope of the
function call if the function is defined using the function prototype format. Otherwise,
the behavior is undefined.
All declarations in the same scope of a particular function declare the identical return
type. Each argument type list agrees in the number and types of the arguments and in
the use of the ellipsis. The argument type checking includes agreement on the number
of dimensions of arrays and on the bounds in each dimension, except the first.
The C language allows recursive function calls, either directly or indirectly, through a
chain of other functions.
See Also
Cast Operator
The result of the cast operator is the conversion of the expression to the specified
type name.
Syntax
cast-expression:
unary-expression
( type-name ) cast-expression
If the type-name specifies type void, the expression can be any type, including void.
Otherwise, the type name must specify scalar type and the expression must have
scalar type.
See Also
In the following conditional expression, the first operand x determines which of the
other two operands is evaluated:
x ? y : z
The first operand is evaluated first. If the result of the evaluation of the first operand is
true (not equal to zero), the second operand, y, is evaluated. The result of the
evaluation of the second operand becomes the result of the operation. If the result of
the evaluation of the first operand is false (equal to zero), the third operand, z, is
evaluated. The result of the evaluation of the third operand becomes the result of the
operation. A conditional expression never yields an lvalue.
The first operand must have scalar type. The type of the second and third operands
can be one of the following:
• Arithmetic
• Both the second and the third operands can have an arithmetic type. The usual
arithmetic conversions are performed on the second and third operands to bring
them to a common type. The type of the result is this common type.
• Pointers
Both the second and third operands can be pointers of the same type. The result
is a pointer of the same type.
• One operand can be a pointer (after the usual unary conversions) and the other
operand can be a null pointer constant. The result has the type of the pointer.
If one operand is a pointer to void, the other operand is converted to that type.
The result is a pointer to void.
• Structure, union
The second and third operands can have the identical structure or union type. The
result has the same type as the operands.
• void
Both operands can be void expressions. The result is a void expression.
E1 ? E2 : E3 ? E4 : E5
E1 ? E2 : ( E3 ? E4 : E5)
Because the question mark (?) and the colon (:) operators bracket the second
operand, it can contain any expression and use operators that have lower
precedence. However, the first and third operands are not bracketed and
therefore cannot contain operators of lower precedence without the use of
parentheses.
See Also
Refer to “Pointer Types,” “Structure Types,” “Union Types,” and “Void Type” in
Section 2 for more information.
Comma Operator
A comma operator (,) is used in comma or sequential expressions to separate a pair
of expressions.
The compiler evaluates the pair of expressions separated by a comma left to right.
The left operand is evaluated first and all side effects take place. If evaluation of the
left operand produces a value, that value is discarded. The type and value of the result
of the comma expression are the type and value of the right operand. The result never
yields an lvalue.
The comma operand is associative. A single expression can contain any number of
comma operators. The compiler evaluates the subexpressions in left to right order.
The value of the last subexpression is the value of the entire expression.
In some cases, the comma is used as a punctuator. For example, the comma is a
punctuator in lists of actual arguments to functions and in lists of initializers. In
general, any place where a comma can be used as a punctuator, the comma is
interpreted as a punctuator and not as a comma operator. For example, the following
function call is always treated as a call to a function with four arguments:
The function now has three arguments. The value of the second argument is 5.
See Also
Refer to “Operators” in Section 1 for more information.
Statements perform actions and determine the flow of control. Unless directed by a
particular statement, statements are executed in sequence. Except for a compound
statement, statements generally end with a semicolon. To treat any sequence of
statements as a single statement, place braces around the sequence.
• Labeled statements
• Compound statements
• Expression statements
• Null statements
• Control statements
• Iteration statements
• Jump statements
• break
• continue
• do
• for
• goto
• if
• return
• switch
• while
See Also
Refer to Section 5, “Expressions and Operators,” for more information.
Statements Syntax
The syntax for statements is as follows:
statement:
compound-statement
control-statement
expression-statement
iteration-statement
jump-statement
labeled-statement
The syntax for the alternative definitions of the statements syntax (compound,
control, expression, iteration, jump, labeled, and null) is described under the discussion
of each type of statement.
Labeled Statements
A label can precede any statement. The label marks the statement so that a goto or
switch statement can transfer control to that statement.
Syntax
labeled-statement:
identifier: statement
case constant-expression : statement
default : statement
Label Description
Named label A named label is an identifier followed by a colon. A name label can
appear on any statement. The label is referenced with the goto
statement.
case label The case label can appear only on a statement within a switch statement.
It consists of the keyword case followed by a constant integer
expression followed by a colon.
default label The default label can appear only on a statement within a switch
statement. It consists of the keyword default followed by a colon.
Examples
This example illustrates the use of a named label:
try_again:
i++;
if (a[i] !=0)
goto try_again;
nomansland: ;
Compound Statements
A compound statement consists of an optional sequence of declarations followed by
a sequence of statements. The declarations and statement sequence are enclosed in
braces ({}).
Syntax
compound-statement:
{ declaration-listopt statement-listopt }
statement-list:
statement
statement-list statement
declaration-list:
declaration
declaration-list declaration
The compound statement can have its own set of declarations. Without declarations,
the compound statement is just a group of statements. With declarations, the
compound statement creates a new scope. If an identifier is declared at the beginning
of a compound statement, its scope extends from its declaration to the end of the
compound statement. It is visible throughout that scope, except when hidden by a
declaration defining a different entity with the same name in an embedded compound
statement.
If . . . Then . . .
See Also
Refer to “Storage Class Specifiers” in Section 3 for more information.
Expression Statements
An expression statement consists of an expression followed by a semicolon.
Syntax
expression-statement:
expressionopt ;
An expression statement is evaluated for its side effects such as assignments and
function calls. The compiler does not necessarily retain an expression or part of an
expression if it does not have a side effect.
Example
++y;
printf("Hi there");
x = y + z;
See Also
Refer to “Function Call Operator” and “Side Effects” in Section 5 for more information.
Null Statements
A null statement consists of a semicolon only. It has no expression and performs no
operations. It only passes control to the next statement. Use a null statement where a
statement must be written, but no action is to be performed.
Examples
One use for a null statement is to supply an empty loop body for an iteration
statement (while, do, or for):
char *s;
while (*s++ != ’\0’);
A null statement can also be used to carry a named label just before the closing brace
(}) of a compound statement:
while (loop1)
{
while (loop2)
{
if (want_out)
goto end_loop1;
/* . . . */
}
/* . . . */
end_loop1: ;
}
Control Statements
The control statements perform conditional executions when a particular condition is
met. The following control statements are discussed:
• if statement
• switch statement
Syntax
control-statement:
if ( expression ) statement
if ( expression ) statement else statement
switch ( expression ) statement
if Statement
The if statement enables conditional execution of program statements.
For both syntax definitions of the if statement, expression within the parentheses is
evaluated first. If the value of expression is nonzero, the statement is executed. If the
value of expression is zero and there is an else clause, the second statement is
executed. If the value of expression is zero, but there is no else clause, execution
continues with the statement following the conditional statement. The expression
must have a scalar type.
NONZERO
TEST STATEMENT 1
ZERO
STATEMENT 2
In expression, be sure not to confuse the equality operator (==) with the assignment
operator (=).
Example
The following example illustrates the use of the if statement:
See Also
switch Statement
A switch statement causes control to jump to none or one of several statements
depending on the value of a controlling expression.
A labeled statement can be used to mark a statement so that a switch statement can
transfer control to that statement. The following example shows a typical use of case
and default labels within the body of a switch statement:
switch ( integer-expression )
{
case constant1 : statement(s)
break;
case constant2 : statement(s)
break;
case constant3 : statement(s)
break;
case constantn : statement(s)
break;
default : statement(s)
}
The case and default labels must satisfy the following rules:
• The integer-expression must have integral type. The integral promotions are
performed on integer-expression.
• Any constant expressions of a case label must have an integral type. The compiler
evaluates and converts each case label constant expression to the same type as
the converted integer-expression.
• After evaluation and conversion, no two of the case constants in the same switch
statement can have the same value.
• A default label can appear anywhere within the switch statement. It does not
have to appear at the end.
• At most, a switch statement can contain only one default label.
• The case and default labels can appear only within a switch statement.
Step Description
Example
The following example illustrates the use of the switch statement:
switch(a)
{ case 1:
case 2:
case 3:
range = low;
break;
case 4:
case 5:
case 6:
case 7:
range = middle;
break;
case 8:
case 9:
case 10:
range = high;
break;
default:
print_range_error(a);
return;
}
See Also
Refer to “Integer Types” in Section 2 for more information.
Iteration Statements
Iteration statements cause a statement called the loop body to be executed
repeatedly depending on a controlling expression. The C language contains three
iteration statements:
while statement The while statement tests for the exit condition before each
execution of a statement.
do statement The do statement tests for the exit condition after each
execution of a statement.
for statement The for statement initializes and updates one or more
controlling variables and tests for a continuation condition.
Syntax
iteration-statement:
while ( expression ) statement
do statement while ( expression ) ;
for ( expressionopt ; expressionopt ; expressionopt ) statement
while Statement
The while statement provides a way for executing the loop body after a test of the
exit condition.
Step Description
Note: The continue statement terminates the current iteration of the innermost
while, do, or for statement that contains the continue statement.
The while statement tests the exit condition before executing statement. Therefore,
statement might never be executed.
Example
The following example illustrates the use of the while statement:
do Statement
The do statement provides a way to execute a loop body and then test for the exit
condition.
Step Description
Step Description
Note: The continue statement terminates the current iteration of the innermost do,
while, or for statement that contains the continue statement.
The do statement differs from the while statement in that the do statement always
executes the loop body at least once. The while statement might never execute its
loop body.
Within the expression, be sure not to confuse the equal-to operator (==) with the
simple assignment operator (=).
Examples
The following examples illustrate the execution of the do statement:
do
putchar (’_’);
while (count ++ < graphcount);
See Also
Refer to “Equality Operators” and “Assignment Operators” in Section 5 for more
information.
for Statement
The for statement provides a way for executing a loop body after testing for a
continuation condition. The for statement also allows for the initialization of variables,
modification of variables, and the continuation condition.
Figure 6-4 illustrates the logic of the for statement. The three optional expression are
referred to as init-exp, test-exp, and modify-exp respectively. The following
statement is called the loop body.
EVALUATE
init-exp
FORSIDE
EFFECTS
EVALUATE ZERO
test-exp
NONZERO
LOOP
BODY
(statement)
EVALUATE
modify-exp
FORSIDE
EFFECTS
Step Description
Each of the three expressions within the parentheses is optional. However, the
semicolons and parentheses are required even if the expressions are absent.
Because the for statement tests before executing the loop body, the loop body might
never be executed.
The init-exp, test-exp, and modify-exp can each consist of multiple expressions
separated by the comma operator.
Example
The following example illustrates the use of the for statement:
The for statement can be illustrated in terms of the while statement. The following
two code sequences are equivalent:
See Also
Refer to “Comma Operator” in Section 5 for more information.
Jump Statements
A jump statement causes an unconditional jump to another statement. The following
keywords indicate jump statements:
• break
• continue
• goto
• return
Syntax
jump-statement:
break ;
continue ;
goto identifier ;
return expressionopt;
break Statement
A break statement immediately terminates execution of the innermost do, for, switch,
or while statement that contains the break statement. A break statement can appear
only in the body of a switch statement or a loop body.
When a break statement is used in a for, do, or while statement, the entire loop is
terminated. When a continue statement is used in a for, do, or while statement, only
the current iteration of the loop body is terminated.
Example
The following example illustrates the use of the break statement:
struct t *pst;
while (pst -> next)
{
if (pst -> tag == error_successor)
break;
pst = pst -> next;
}
continue Statement
A continue statement immediately terminates the current iteration of the innermost
do, for, or while statement that contains the continue statement. Execution resumes
at the test expression in the while and do statements and at the modify-exp in the for
statement. A continue can appear only in a loop body.
When a break statement is used in a for, do, or while statement, the entire statement
is terminated. When a continue statement is used in a for, do, or while statement,
only the current iteration of the loop body is terminated.
Example
The following example illustrates the use of the continue statement:
goto Statement
A goto statement transfers control from any statement in a function to any other
statement in that function.
Execution of the goto statement forces an immediate transfer of control to the point
in the function indicated by the identifier. The statement labeled with identifier is
executed next.
Since labels have function scope, a goto can transfer control only to a statement
within the same function.
The use of a goto statement should be avoided. In general, the use of goto is
considered a poor programming practice that makes programs difficult to understand
and maintain.
The branching that a goto statement performs can hinder compiler optimizations. To
write a C program that executes as fast as possible, limit the number of labels. Any
label, whether explicit, named, or implicit, can inhibit compiler optimizations and slow
down a C program.
The following guidelines are intended to provide a clear use of the goto statement and
reduce any confusion that goto branching can cause:
Example
The following example illustrates the use of the goto statement:
See Also
Refer to “Scope” in Section 1 for more information.
return Statement
The return statement terminates execution of the current function and returns control
to its caller.
The expression is optional. If the return statement does not contain an expression,
the function does not return a value. If the context of the function requires that a value
be returned, the value of the function is undefined. The returned value must be
compatible with the type returned by the function.
Example
The following example illustrates the use of the return statement:
double sine(double x)
{
if(fabs(x) < epsilon)
return x - (x * x * x) / 6.0;
else
{
x = sine (x/3.0);
return x * (3.0 - 4.0 * x * x);
}
}
See Also
• Defining functions
• Passing arguments
• Returning values
Defining Functions
When defining a function, supply the following information:
Function Syntax
The following is the syntax for defining old style and function prototype formats:
function-definition:
declaration-specifiersopt declarator function-body
function-body:
declaration-listopt compound-statement
declaration-list:
declaration
declaration-list declaration
The function body consists of optional local declarations and definitions, statements to
be executed when the function is called, and an optional return statement.
See Also
1. The names of the arguments are listed within the parentheses after the function
name.
2. The arguments are declared (given their attributes) in the argument section.
In the old style format, an empty argument list means that the function has no
arguments. Otherwise, write the argument identifiers alone within the argument list.
The following example illustrates a typical old style format for defining functions:
Declare the arguments in the argument section immediately following the declarator.
Each argument must be declared at most once. Declare arguments only in the
argument section. If an argument is not declared, the compiler implicitly declares it to
have type int. The function body, enclosed in braces, terminates the argument level
declarations.
Example
The following example illustrates the old style format of a function:
int fxd(x,y)
int x;
double y;
{ return x*y; }
For the old style definition and declaration, the compiler makes some adjustments in
the type of function arguments according to the default argument promotions. These
adjustments occur on the actual arguments when the function is called.
The adjustments to the type of the actual arguments for functions using the old style
format are:
Once the arguments are passed, they are then converted to the type of the formal
arguments as specified in the parameter list.
Both the type specifier and the declarator determine the type of a function. If a type
specifier is not specified, int is assumed.
The type of the return value can be any type, except “array of type” or “function
returning type.” In other words, functions cannot return arrays or other functions. But
they can return pointers to arrays or functions. If a function is not intended to return a
value, specify the type of the return value to be void.
See Also
Refer to “Function Declarators” and “Storage Class Specifiers” in Section 3 for more
information.
storage-class type name ( type arg1, type arg2, ... type argn)
The benefit of the function prototype format is that the compiler converts the actual
arguments to the type specified by the formal argument in the prototype. The
compiler also checks for type compatibility and number. However, the compiler
cannot check for agreement of actual and formal arguments and perform the
conversion unless the function prototype declaration is in scope at the point of the
call.
The formal arguments are listed and declared in the function declarator. The scope of
these formal argument identifiers ends with the end of the function body:
To declare a function with a variable length argument list, write a function prototype
whose argument list ends with a comma followed by ellipsis marks. For example:
At least one argument must be specified in the function prototype. On a function call,
the compiler checks the types and number of all arguments that are specified in the
function prototype. A function call with more arguments than specified in the function
prototype is allowed, but not a function with fewer arguments than specified. All
function calls must be in scope of such a function prototype. For undeclared
arguments, the compiler adjusts the type of function arguments according to the
default argument promotions. These adjustments occur on the actual arguments
when the function is called, and are the same as the adjustments for functions that
use the old style format. Refer to Volume 2, “Headers and Functions,” for information
about the header <stdarg.h> and referencing undeclared arguments.
f(void)
Because array expression and function identifiers as arguments are always converted
to pointers before the function call, a declaration of a formal argument as “array of
type” is always adjusted to read “pointer to type.” A declaration of a formal argument
as “function returning type” is always adjusted to read “pointer to function returning
type.”
Once the arguments are passed, they are then converted to the type of the formal
arguments as specified in the parameter list.
extern storage class specifier or functions that do not have a specified storage class
specifier can be called by functions in other files because the function name is
exported to the Binder.
Both the type specifier and the declarator determine the type of a function. If no type
specifier is specified, int is assumed.
The type of the return value can be any type, except “array of type” or “function
returning type.” That is, functions cannot return arrays or other functions. But they
can return pointers to arrays or functions. If it is not intended that a function return a
value, specify the type of the return value to be void.
See Also
Mixing Formats
It is not recommended to mix old style declarations and prototype declarations of the
same functions.
A function using the old style can be declared and defined with the function prototype
format if, and only if, the type of the actual arguments after promotion agrees with the
type of the formal arguments in the function definition.
A function using the function prototype format can be declared and defined using the
old style format if, and only if, the function prototype declares the formal arguments
to be the same type as used by the default argument promotions, after the
promotions occur.
Argument Passing—Call-by-Value
Function arguments are passed “by value.” By-value means that the function is given
the value of its arguments in a storage area local to the function rather than their
addresses. A function cannot alter an actual argument in the calling function; it can
alter only its local copy of the argument.
When necessary, the called function can alter the calling function’s data. To do this:
• The calling function must explicitly pass the address of the arguments to be
altered.
• The called function must declare the arguments to be pointers and reference the
actual argument indirectly through them.
Example
The following program sequence illustrates argument passing:
main()
{ char actual_array[3] = "abc";
int actual_var = 5;
func(actual_var, actual_array);
/* After call to ’func’, ’actual_var’ is still 5,
but the contents of ’actual_array’ is "bbc" */
}
See Also
Refer to “Pointer Types” in Section 2 for more information on pointers.
Return Values
A function can be defined to return a value of any type, except an array or function. It
can, however, return pointers to arrays or functions. The actual value returned by the
function, if any, is specified by an expression in the return statement. The return
statement causes the function to terminate. If a function “falls off the end,” it is the
same as if the following statement were executed:
return;
The value returned by a function is not an lvalue. Therefore, a function call cannot be
the left side of an assignment operator.
If a function is declared with a return type void, any return statement within the
function must not have an expression. If a function is declared as returning a non-void
type, the return statement may or may not contain an expression. If the expression is
present, its type must be convertible by assignment to the return type. If the return
statement does not contain an expression, the value returned is undefined. It is
recommended that a return function with no expression be used only with a function
that is declared to have a void return type.
Examples
The following examples illustrate return statements:
int **func(int a)
{ static int var = 1;
static int *var1 = &var;
static int **var2 = &var1;
return var2;
}
void func2()
{ static int a = 0;
a++;
return;
}
See Also
By default, C passes function arguments by value. This can be too restrictive for
calling a function that is not written in C. The linkage specification provides a
mechanism that enables the programmer to bypass the default calling conventions
when calling non-C functions.
The linkage specification describes the language in which the function is written and is
used by the C compiler to determine the parameter modes for that function. For
example, arrays are typically passed to C functions by passing the array’s address by
value; entry points declared with ALGOL, Pascal, or COBOL linkage can be passed
arrays by reference.
Syntax
The syntax for a linkage specification is as follows:
linkage-specification:
extern string-literal { declaration-list }
extern string-literal declaration
The string literal contains the name of the language and must be one of the following
(case is not significant):
"ALGOL"
"Pascal"
"FORTRAN"
"COBOL"
"C"
ALGOL linkage can be used for ALGOL and the ALGOL-type languages (such as
NEWP). FORTRAN linkage can be used for FORTRAN and FORTRAN77. COBOL linkage
can be used for COBOL74 and COBOL85. C linkage is provided for completeness (in
the absence of a linkage specification, all functions have C linkage).
Examples
The first form of the linkage specification enables the declaration of several functions
with the same linkage, for example:
extern "ALGOL" {
int p1 (int);
void p2 (int, int);
static double p3 (double);
int abc [100];
}
Note that a linkage specification does not apply to functions declared static (such as
function p3 in the previous example). Also, linkage specification does not apply to data
objects (such as array abc in the previous example).
Note that for data objects, the extern keyword in a linkage specification does not
specify the object’s storage class. To declare pf with storage class extern, another
extern must be added as shown in the following example:
Unlike objects, functions declared with a linkage specification, but without a storage
class, are implicitly extern.
A linkage specification may occur only at file scope; for example, the declaration of pf
may not occur within a function.
See Also
• Refer to Appendix A, “Interface to the Library Facility,” in this manual for more
information about library calls.
Parameter Passing
The & operator is used to declare parameters passed by reference. The & operator is
used in much the same way as the * operator is used when declaring a pointer. For
example:
extern "ALGOL" int F (int, float&, int (&)[ ], char (&)[ ]);
The preceding example declares an ALGOL integer procedure F taking the following
four parameters:
1. Integer by value
2. Real by reference
3. Integer array by reference
4. EBCDIC array by reference
The following declaration declares a Pascal procedure G, which takes two parameters:
a by-reference array of integers and a by-reference integer function that takes two by-
value integers:
Note the following considerations for declaring entry points with linkage
specifications:
being that of the actual array and not the length of the C string contained in the
array. All other arrays are passed by reference. Note that it is not required to
specify the parameter passing mode with the & operator. For example, the
following example passes an integer by-value-result and a real array by reference
to subroutine SUB1:
extern "FORTRAN" void SUB1 (int, double [ ]);
A function declaration with a linkage specification must use the function prototype
format. If no arguments are passed, the argument list must be explicitly specified as
void, as in the following example:
pointer integer
float real
pointer INTEGER
float REAL
pointer 77 BINARY †
float 77 REAL †
pointer& 77 BINARY
float& 77 FLOAT
Legend
† The argument is actually passed by value. In a bound COBOL procedure, the
COBOL declaration should read “BY CONTENT”.
A void function with non-C linkage maps to an untyped procedure in other languages,
but a void function with C linkage maps to an INTEGER procedure in other languages.
A function with COBOL linkage must have a result type of void.
C Declaration
typedef struct S {int a, b, c;} S;
extern "ALGOL" S F (int a, int b, int c);
ALGOL Procedure
PROCEDURE F (RESULT_PTR, A_VALUE, B_VALUE, C_VALUE);
VALUE RESULT_PTR, A_VALUE, B_VALUE, C_VALUE;
POINTER RESULT PTR;
INTEGER A_VALUE, B_VALUE, C_VALUE;
BEGIN
REPLACE RESULT_PTR BY A_VALUE, B_VALUE, C_VALUE;
END;
Programmers use the preprocessor to develop programs that are easier to read,
develop, modify, and transport to another system. A programmer can also use the
preprocessor to customize the C language for a particular application.
All preprocessor control lines are removed from the source file and the actions that
the directives indicate (such as expansion of macro calls that occur within the source
text) are performed on the source code. After preprocessing, the source text must
not contain a number sign character (#), except in string and character constants. The
result of preprocessing is source text that the compiler begins to translate.
Also discussed in this section is CPREP, a C compiler utility that enables you to create
output source files by manipulating input source files through preprocessor directives.
OxABCDE+123
OxABCDE + 123
• The preprocessor does not look for directives within the following:
− Character and string constants
− Comments
See Also
Refer to “Comments,” “Constants,” and “White Space” in Section 1 for more
information.
Conditional inclusion directive This directive enables compilation of only selected lines of
the source code.
Macro directive This directive creates or discards a macro definition.
File inclusion directive This directive includes text from other files.
Information directive This directive obtains information from the compiler and
sends information to the compiler.
Macro Directives
Information Directives
Conditional Inclusion
The preprocessor conditional compilation directives enable source lines to be included
or excluded from a compilation. The conditional inclusion directives are
• #if
• #else
• #elif
• #endif
• #ifdef
• #ifndef
The following program fragment illustrates a typical use of the #if, #else, #elif, and
#endif directives:
#if constant-exp1
source-lines /* included if constant-exp1 is nonzero */
#elif constant-exp2
source-lines /* included if constant-exp2 is nonzero and */
/* constant-exp1 is zero */
.
.
.
#elif constant-expn
source-lines /* included if constant-expn is nonzero and */
/* constant-exp1 through constant-expn-1 are zero */
#else
The #else and #elif directives and their corresponding statement groups are optional.
Each constant-exp is evaluated until one produces a nonzero (true) value. The
source-lines associated with the control line that contained the nonzero
constant-exp are included. All other constant-exps are ignored and source-lines
associated with their control lines are discarded. If no constant-exp produces a
nonzero (true) value, the source-lines associated with the #else control line are
included. If the conditional construct does not contain a #else control line, none of the
source-lines is included.
Examples
The following example illustrates the conditional inclusion directives.
#define init 1
#if init
int table [50];
void initialize_table();
#else
int table[50];
#endif
Conditional directives can be nested.
In the following example, the #else, #elif, and #endif bind to the closest #if that has
not already been closed by #endif:
#if defined NEED_DECLARE
int foo(int i, char c)
#if defined NEED_BODY
{ return i + c; }
#else
;
#endif
#endif
As previously stated, all statements not to be included are discarded. However, before
being discarded, any preprocessor lines within the group are checked. Therefore, all
preprocessor lines within a discarded group must be legal preprocessor directives.
This is because only the #if, #elif, #else, and #endif directives are recognized as
delimiters. These directives are used to keep track of nested conditionals. The
following example produces an error saying garbage is an invalid directive, even
though compilation is turned off:
#if 0
#garbage
#endif
defined identifier
defined (identifier)
These expressions produce the value 1 if the identifier is currently defined as a macro
name (that is, it is the subject of a #define directive without an intervening #undef
directive) or the value 0 if the identifier is not currently defined as a macro name (refer
to “defined Operator” in this section).
On the #if and #elif control lines, macro names not associated with the defined
operator are macro replaced. Therefore, macro calls can be included in the
constant-exp. Any other identifier not defined as a macro is replaced with the value 0.
See Also
Refer to “Constant Expressions” in Section 5 for more information.
Syntax
if-group:
#ifdef identifier newline groupopt
#ifndef identifier newline groupopt
If identifier is not currently defined as a macro name, the source-lines are included.
To be defined, the identifier must appear on a #define control line without being the
subject of an intervening #undef directive (refer to “#undef Directive” in this section).
The #ifdef and #ifndef directives are variations of the #if directive and the defined
operator.
#ifdef identifier
#if defined(identifier)
#ifndef identifier
Examples
The following example illustrates the use of the #ifdef directive:
#include Directive
The #include directive causes the #include control line to be replaced with the
contents of the specified file.
Syntax
control-line:
#include pp-tokens library-linkageopt newline
The pp-tokens are macros. The expanded macros must result in one of the following
two forms:
The semantics of the two forms differ in the manner in which the files are searched.
The "source-identifier" form searches for a file with the title source-identifier. If a
file is not found, source-identifier is compared to the list of headers. If found, the
header file is included, otherwise the compiler either waits on a NO FILE condition (if
the compiler control option ANSI is not set) or flags the missing file as an error (if the
ANSI option is set).
#include "source-identifier"
Before a file is searched for, the source-identifier is edited to help it conform to the
required title format. Any characters inside double quotes (" ") are left “as is” except
any period (.) or backslash (\), which is translated to a slash (/), except when that
would produce an illegal file title, in which case the period or backslash is dropped.
The SEARCH compiler control option may be used to further edit the file title and to
search in multiple places. The TITLESYNTAX compiler control option specifies which
file name attribute, title or pathname, and parsing rules to apply when a file name is
found in the source. Refer to Section 10, “TITLESYNTAX Option,” for more information
on compiler control options.
This C language implementation enables 32 nesting levels for include files before it
issues an error message and terminates the compilation.
The optional library-linkage is an A Series extension that enables the included file to
specify entry points in an A Series library. Refer to Appendix A, “Interface to the
Library Facility,” for information about these libraries.
Syntax
library-attributes:
bytitle = string-literal , intname = string-literal
byfunction = string-literal , intname = string-literal
byinitiator , intname = string-literal
The first syntax specifies that the library is located by title and the code file that should
be linked to. The string-literal should be a valid ClearPath MCP file title. The
SEARCH compiler control option is not used when searching for a library.
The second syntax specifies that the library is located by a Support Library function
name. The system command SL maps a function name onto a file by title. The
string-literal should be a letter followed by 1 to 16 letters or digits.
The third syntax is used when the program is itself a library and wants to link back to
the program that caused it to be initiated.
All forms specify the internal library name that is used by the Binder to merge entry
points from different files. The string-literal should be a letter followed by 1 to 16
letters or digits.
Example
The following example illustrates inclusion of files. Assume that files FILE/C and
STDLIB/H exist and that no file exists with the names STDIO/H or NONE/H.
Macro Directives
The macro directives enable the preprocessor to define and remove a macro.
#define Directive
The #define directive creates preprocessor macros by associating a token sequence,
called the macro body, with an identifier (macro name). When the macro name is
recognized, it is replaced with the macro body.
Syntax
control-line:
#define identifier replacement-list newline
#define identifier lparen identifier-listopt)replacement-list newline
The simple macro definition begins with a #define directive, followed by an identifier
that is the macro name, followed by a replacement-list that is the macro body. White
space preceding or following replacement-list is not considered part of the macro
body.
Whenever a defined macro name is encountered, the macro name is replaced with
replacement-list. After replacement, the macro body is rescanned for more defined
macro names. Any macro names inside a string or character constant are not
replaced.
To continue a macro definition to another line, end the line to be continued with a
backslash.
One use of this form of the #define directive is to define the value of a program
constant. The value of the constant can be defined in one place and referred to by
name in the program. To change the value of the constant, change only the #define
directive.
The macro definition with parameters defines a function-like macro with arguments
similar to a function call. The arguments are specified by the optional list of identifiers
whose scope extends until the termination of the #define directive. The argument list
must immediately follow the macro name; no space is allowed. If a space or spaces
separate identifier from the left parenthesis, the definition is considered to be a
simple definition and the argument list to be part of the macro body.
When the preprocessor encounters the macro name immediately followed by a left
parenthesis, it replaces the macro name and argument list with the processed macro
body. The left parenthesis that begins the argument list must immediately follow the
identifier (macro name).
To continue a macro definition to another line, end the line to be continued with a
backslash.
The actual arguments in the call are nonempty token strings separated by commas.
The number of actual arguments must match the number of formal arguments. Actual
arguments can contain parentheses, if they are properly nested and balanced, and
commas, if contained within nested parentheses.
Macro expansion is the replacement of a macro call with the processed copy of its
body. The processed copy of its body is called the expansion of the macro call. In a
macro expansion:
1. The actual arguments are associated with their corresponding formal arguments.
2. A copy of the macro body is created.
In this copy, each formal argument is replaced with the actual argument
associated with it. Unless preceded by a number sign character (#) or double
number sign character (##) token or followed by a double number sign character
(##) token, the actual arguments are subject to macro replacement before they are
substituted. That is, the tokens that make up the actual arguments are checked for
macros and expanded before being substituted in the macro body.
Any macro names or argument names inside a string or character constant are not
replaced.
3. The modified copy of the macro body replaces the macro call.
The following macro definition defines a macro whose body provides source code to
calculate the maximum value of its arguments:
The parentheses ensure that the arguments and the resulting expression are bound
properly.
This macro definition has the advantages of working for any compatible types of
arguments and of generating in-line code without the overhead of a function call. It has
the disadvantages that during execution of the code one of the original arguments is
evaluated a second time (side effects occur again).
# Preprocessor Operator
Example
The following example illustrates the # preprocessor operator:
#define stringize(a) #a
char c[] = stringize(Every "string" ends with ’\0’);
## Preprocessor Operator
For both the simple macro and parameterized macro invocations, each instance of a ##
token in a macro body is deleted and the tokens preceding and following it are
concatenated. If the tokens to be concatenated are formal arguments, they are
replaced by the actual arguments before concatenation occurs. If the result of the
concatenation is not a valid preprocessing token, an error is issued. The resulting
token is available for further macro replacement. The concatenation takes place
before the macro body is rescanned for more macro names.
After all arguments in the macro body have been substituted, the resulting token
sequence is rescanned, within the context of the source file, for more macro names
to be replaced. Any macro names inside a string or character constant are not
replaced.
If the name of the macro being replaced is found during the scan of the replacement
list, it is not replaced. Further, if any nested replacements encounter the name of a
macro being replaced, it is not replaced. (This prevents direct and indirect recursive
macro expansion.)
Example
The following example illustrates macro replacement:
/* results in a+b+mac */
mac /* Note that mac did not get expanded when */
/* it was seen in the replacement tokens. */
Macro body scanning and replacement does not occur until the macro name is called.
The macro body is not scanned during definition (on the control line). Macro names are
recognized in the body only when the macro has been expanded by a macro call.
Macro names within the actual arguments are expanded before the parameters are
replaced, except where the # or ## operators are used.
Example
The following example illustrates the rescanning and replacement of macro names:
#define A 3
#define F(x) F(A * (x))
F(y + 1) + F(F(z))
#undef Directive
The #undef directive removes the current definition of a preprocessor identifier.
Syntax
control-line:
#undef identifier newline
Given this directive, the current definition of the macro named identifier is forgotten.
identifier can now be redefined with the #define directive.
Undefining an identifier that is not currently defined as a macro name has no effect.
A macro can be redefined without an intervening #undef if the token sequence of the
macro definitions are identical. This includes using the same formal argument names
and the same white space separations where all white space separations are
considered identical. That is, any amount of white space is considered identical to any
other amount of white space, except no white space. For example, the following
macro definitions are not identical:
#define x (a)
#define x ( a )
#define x ( a )
#define x ( a )
Example
The following example defines and undefines an identifier:
#define TEST
#undef TEST
__LINE__ The line number of the current source line (a decimal constant).
__LINENUMBER__ The sequence number associated with the current source line
(a decimal constant). This is an A Series C extension.
__STDC__ The decimal constant 1 (for an implementation that conforms
to the ANSI C standard).
None of these macro names, nor the identifier defined, can be the subject of a #define
or a #undef preprocessing directive. Predefined macros always begin with double
underscores. Therefore, always name macros with names that do not begin with
double underscores to avoid conflict with predefined macros.
Example
The following example illustrates the rules for redefinition and reexamination:
#define x 3
#define f (a) f (x * (a))
#undef x
#define x 2
#define g f
#define z z[0]
#define h g(-
#define m(a) a(w)
#define w 0,1
#define t(a) a
Replacement Result
f(2 * (y+1)) + f(2 * (f(2 * (z[0])))) % f(2 * (0)) + t(1);
f(2 *(2+(3,4) - 0,1)) | f(2 * ( - 5)) & f(2 * (0,1))^m(0,1);
Example
The following example illustrates the rules for creating string literals and
concatenating tokens:
#define str(s) #s
#define xstr(s) str(s)
debug(1, 2);
fputs(str(strncmp("abc\0d", "abc", ’\4’) /* continues on next line */
==0) str(: @\n), s);
#include xstr(INCFILE.h)
#include str(INCFILE.h)
Replacement Result
printf("x" "1" "= %d, x" "2" "=%s", x1, x2);
fputs("strncmp(\"abc\\0d\", \"abc\", ’\\4’) == 0: @\n", s);
#include "vers1.h" /* after macro replacement, before file access */
#include "INCFILE.h"
The preceding result is identical to the following statements because the adjacent
string literals are concatenated:
Space around the number sign (#) and double number sign (##) tokens in the macro
definition is optional.
Example
To demonstrate the redefinition rules, the following sequence is valid:
In the last two examples, if one white-space character exists between tokens, any
amount of white space can exist between the same tokens and it is still considered
identical.
Example
The following sequence is an invalid sequence of redefinitions of the macros just
defined:
Information Directives
The information directives produce error messages, determine if a name is defined as
a preprocessor macro, and sets the value for _LINE_ and _FILE_ macros.
#error Directive
The #error preprocessing directive causes a diagnostic message that includes the
token sequence that follows the #error directive.
#line Directive
The #line directive sets the value of the predefined macro __LINE__ and optionally
__FILE__.
Syntax
control-line:
#line pp-tokens newline
The pp-tokens are macros. The expanded macros must result in one of the following
two forms.
#line digit-sequence
#line digit-sequence string
Both forms set the macro __LINE__ to be digit-sequence, starting at the next line. The
macro __LINE__ continues to be incremented by one for every line read. The second
form also sets the macro __FILE__ to be string. The string can be any C string or
concatenation of C strings. If the compiler control option ANSI is set, the value of
digit sequence must be between 1 and 32767 inclusive. If the ANSI option is reset, the
value must be between 1 and 99999999 inclusive. The macro __LINE__ ceases to
increment once the maximum value is reached.
#pragma Directive
The #pragma directive verifies that object files being bound together are compiled with
the same set of compile-time options. The compiler supports the following #pragma
directive and ignores all others:
Syntax
#pragma binder_match = (<string1>, <string2>)
The BINDER_MATCH compiler control option is added to the name of string1 and to
the value of string2. String1 names that begin with an asterisk (*) are reserved for
use by Unisys only.
Example
The following example shows the use of the #pragma directive:
See Also
Refer to Section 10, “Compiler Control Options,” for more information on the
BINDER_MATCH compiler control option.
defined Operator
The defined operator can appear only in #if and #elif preprocessor directives. The
defined operator tests for the definition of a preprocessor identifier definition.
Syntax
defined identifier
defined ( identifier )
The defined operator produces the value 1 (true) if identifier is defined in the
preprocessor or 0 (false) if identifier is not defined.
Example
The following example illustrates the use of the defined operator:
Syntax
The syntax of the preprocessor directives is independent of the syntax of the rest of
the C language, although in some ways it is similar to the syntax of the C language.
preprocessing-file:
groupopt
group:
group-part
group group-part
group-part:
pp-tokensopt newline
if-section
control-line
if-section:
if-group elif-groupsopt else-groupopt endif-line
if-group:
#if constant-expression newline groupopt
#ifdef identifier newline groupopt
#ifndef identifier newline groupopt
elif-groups:
elif-group
elif-groups elif-group
elif-group:
#elif constant-expression newline groupopt
else-group:
#else newline groupopt
endif-line:
#endif newline
control-line:
#include pp-tokens library-linkageopt newline
#define identifier replacement-list newline
#define identifier lparen identifier-listopt)
replacement-list newline
#undef identifier newline
#line pp-tokens newline
#error pp-tokensopt newline
#pragma pp-tokensopt newline
# newlineV
lparen:
the left parenthesis character without preceding white space
replacement-list:
pp-tokensopt
pp-tokens:
preprocessing-token
pp-tokens preprocessing-token
preprocessing-token:
character-constant
header-name /* only on a #include line */
identifier
keyword
operator
pp-number
punctuator
string-literal
each non-white-space character that cannot be one of the previous
header-name:
<h-char-sequence>
"q-char-sequence"
h-char-sequence:
h-char
h-char-sequence h-char
h-char:
any character in the source character set, except the
newline character and >
newline:
the newline character
pp-number:
digit
. digit
pp-number digit
pp-number non-digit
pp-number e sign
pp-number E sign
pp-number .
q-char-sequence:
q-char
q-char-sequence q-char
q-char:
any character in the source character set,
except the newline character and "
library-linkage:
(library-attributes)
library-attributes:
bytitle = string-literal , intname = string-literal
byfunction = string-literal , intname = string-literal
byinitiator , intname = string-literal
Example
#if 0
$ SET FLAG1
#endif
$ IF NOT FLAG1
#error Hi there
$ END
The compiler control option FLAG1 is always set and the #error is never processed.
The input source to the CPREP utility can be any statements including C compiler
control records (CCRs) and C preprocessor statements. CPREP will accept any
compiler control option; however, only those options that control input source and
output source have any meaning to CPREP. The C preprocessor statements work in
CPREP the same way they work in the C compiler. They can be used to control source
inclusion/exclusion and they can be used for macro substitution. For all other
statements other than comments, CPREP simply breaks the source into tokens.
Tokens that match macro names are replaced by macro definitions. Macros are
defined through use of C preprocessor statements.
The output source file generated by CPREP is the same as the output file XSOURCE,
which is generated by the C compiler when the compiler control option XSOURCE is
enabled. The output source file contains all statements except CCRs, C preprocessor,
and comments.
Functionally, the use of CPREP is the same as the use of the C compiler when the
option XSOURCE is enabled. However, CPREP differs in the following ways:
Running CPREP
CPREP is a compiler and as such can be invoked in the same manner in which the C
compiler is invoked. In the COMPILE command, you simply substitue cprep for cc.
c with cprep
c source/prog with cprep
Naming XSOURCE
The primary output from CPREP is the file XSOURCE. To give XSOURCE another name,
add the following:
Refer to Section 10, “TITLESYNTAX Option,” for more information on the file title
changes that occur during compilation.
This section describes the compiler operations for this C language implementation. It
contains the following two parts:
Refer to Section 10, “Compiler Control Options,” for detailed information on the
compiler control options that are available in this C language implementation.
Input Files
Output Files
Input Files
The compiler can accept at least three input files. These input files are:
• CARD file
• SOURCE file
• INITIALCCI file
The compiler accepts input from one or more input files. The primary input file is
assigned to the internal file CARD. If a secondary input file is specified (through the
presence of a MERGE compiler control record), that file is assigned to SOURCE (or
TAPE, if there is no file equation for SOURCE).
The merging of primary and secondary input files produces what is known as a
“virtual” input file. Merging proceeds based on the sequence number fields of the file
records: The compiler serially processes the input files, selecting at each step the
record with the lowest sequence number. If both files have records with the same
sequence number, the record from the primary file is read and the record from the
secondary file is skipped. Since the merging depends on the presence of sequence
numbers, files with FILEKIND DATA cannot be used for merging.
The INITIALCCI file consists of slightly modified compiler control records. Each
individual compiler user can have an individual INITIALCCI file or a site can install a
system-wide (nonusercoded) *INITIALCCI file. The compiler searches for the
INITIALCCI file using the usual usercode and family name conventions; if it is not
found, the file is done without (INITIALCCI is the INTNAME of the file; hence, the file
can be file equated). The FILEKIND of the INITIALCCI file need not match that of the
program being compiled.
In the INITIALCCI file, the compiler control records need not begin with a dollar sign ($),
as they normally must. An INITIALCCI record may contain an identifier followed by a
colon (:). If the identifier matches the compiler language, then the compiler options
following the colon are processed; otherwise, the remainder of the record is ignored.
If the identifier is BATCH, the options are processed only for compilations initiated
through WFL; if the identifier is INTERACTIVE, the options are processed only for
interactive compilations.
Before the INITIALCCI file is read, all compiler options are set to their initial values.
INCLUDE cards are not allowed in INITIALCCI files. The INITIALCCI file is read before
the compiler input files are read.
Example
The following is an example of an INITIALCCI file:
C: RESET LINEINFO
C: OPTIMIZE XREFFILES ANSI
FORTRAN77: SET XREF
INTERACTIVE: ERRORLIMIT = 5
BATCH: ERRORLIMIT = 10
RESET LIST SET NEW
• If the CARD file is a C source file, the LINEINFO option is disabled and the
OPTIMIZE, XREFFILES, and ANSI options are enabled.
• If the CARD file is a FORTRAN77 source file, the XREF option is enabled.
• If the compilation is through CANDE, Editor, or the MAKE utility, the ERRORLIMIT
is set to 5; if the compilation is through WFL, the ERRORLIMIT is set to 10.
• For all compilations, the LIST option is disabled and the NEW option is enabled.
Output Files
The compiler can generate at least five output files. These output files are:
• CODE file
• LINE file
• ERRORS file
• NEWSOURCE file
• XSOURCE file
The XSOURCE file is also generated by the CPREP compiler utility. Refer to “The
CPREP Compiler Utility” in Section 8 for more information.
The FILEKIND can be specified by the CANDE MAKE command using the following
syntax:
make file-title cc
The FILEKIND can also be specified by any program that creates a source file. Refer to
Appendix C, “Porting C Applications to A Series Systems,” for examples.
Refer to “The INITIALCCI File” in this section for more information on the format and
use of the INITIALCCI file.
The syntax and semantics are slightly different for each environment and are
described briefly in this section.
c source-file-title
For compiling the work file, the short form syntax of the COMPILE command is:
The long form syntax of the CANDE COMPILE command, which works with files that
have any FILEKIND value, is any of the following:
c source-file-title with cc
c source-file-title : cc
c source-file-title cc
If compiling the work file, the long form syntax of the CANDE COMPILE command is
any one of the following:
c with cc
c : cc
c cc
Note: The last command prevents the source file "cc" from being compiled using
the short form; the file title can be quoted to avoid ambiguity with the long form as
shown in the following syntax:
c "CC"
For more information, refer to Object Code File Disposition in the Work Flow
Language (WFL) Programming Reference Manual.
For compiling a patch file against a source file, the title can be provided either through
file equation or through the MERGE compiler control option. In the short form, where
the work file is the patch file, use the following syntax:
Refer to Section 10, “TITLESYNTAX Option,” for more information on the file title
changes that occur during compilation.
The current work file can be compiled in the Editor by the following command:
]comp
If any errors are detected by the compiler, the Editor positions the cursor on the first
line that is in error. The command ]+err can be used to move to the next line that is in
error.
When compiling a patch file against a source file, the Editor automatically inserts the
MERGE compiler control option and applies the correct file equation.
When the Editor finishes, if the code file represents the latest version, it is passed
back to CANDE. The CANDE SAVE command saves both the source file and the code
file.
When a file is compiled through WFL, you must provide a CARD file. If a SOURCE file is
required (because the MERGE compiler control option is enabled), the title can be
provided either through file equation or through the MERGE compiler control option.
The CARD file defaults to KIND=READER; all other files default to KIND=DISK. The
defaults can be overridden by file equation.
To compile an existing source file in WFL, use the following COMPILE statements:
The file source-file-title is compiled and the object code is placed in file code-file-title.
Although not required, the usual convention is to give code-file-title the title
OBJECT/source-file-title.
To compile a patch file against a source file in WFL, use the following COMPILE
statements:
To include the patch as part of the WFL job, use the following COMPILE statements:
.
.
.
When compiling under WFL, many of the compiler control options have different initial
values than when compiling under CANDE. If the compiler control option LIST is not
explicitly reset, a listing of the source, including any errors, is printed on the LINE file.
If the ERRORLIST option is explicitly set, errors are printed on the ERRORS file. If the
LIST option is reset and ERRORLIST is not set, errors are not printed. Refer to Section
10, “Compiler Control Options,” for more information on compiler control options and
compiler files.
Refer to Section 10, “TITLESYNTAX Option,” for more information on the file title
changes that occur during compilation.
$SEARCH="(CC)SYMBOL/CC/LIBRARY/= on SYMBOLS"
The resulting object file, however, is not suitable for direct execution. The following
actions must also be done:
Binding C Programs
A C program that consists of multiple C source files must be bound before it can be
executed. A program is bound using the A Series Binder.
• Two or more object files, which contain the separately compiled variable
declarations and functions that are to be bound together. One of these object files
must contain the procedure main.
• A file containing Binder statements, which instruct the Binder which object files
are to be bound.
The Binder produces as output a code file consisting of the bound object files. An
external variable or function is considered resolved if it has been successfully bound;
otherwise it is considered unresolved. An unresolved reference is not necessarily fatal
to the execution of the bound program; the program terminates with a run-time error
only if the code containing the unresolved reference is executed.
Note: A bound code file cannot be used again as a Binder object file.
Object Files
The description of a variable or function in the object file in which it is referenced must
match the description of the variable or function in the file in which it is defined. During
binding, if a mismatch occurs between function or variable types or between the
number or types of a function’s arguments, the Binder issues an error message and
leaves the reference to the variable or function in the bound code file unresolved.
The following rules are used by the Binder when performing type-checking on
variables, functions, and function arguments:
• A single-word operand (char, short, int, long, pointer, float, double) matches
any other single-word operand.
• A double-word operand (long double) matches any other double-word operand.
• An aggregate type (array, struct, union) matches any other aggregate type. The
actual length is the greater of the two matched types.
The following Binder statement directs the Binder to treat all functions and variables
defined in object-file-title as candidates for binding:
Given a C program that consists of separate source files F1/C, F2/C, F3/C, and MAIN/C,
the following Binder input binds the corresponding object files into an executable
code file:
Notes:
Example 9–1 shows a sample C program, composed of two separate source files, that
sorts a list of random numbers, followed by the Binder input to bind the objects into
an executable code file.
______________________________________________________________________________
SORTNUMS/C:
#include <stdio.h>
extern initialize (int *pa, int len);
extern sort (int *pa, int len);
main () {
#define MAXNUM 100
int a [MAXNUM], i;
initialize (a, MAXNUM);
sort (a, MAXNUM);
printf ("sorted array: ");
for (i = 0; i < MAXNUM; i++) printf (" %i", a [i]);
putchar (’\n’)
SORT/C:
#include <stdlib.h>
initialize (int *pa, int len) {
int i;
/* fill *pa with random numbers */
for (i = 0; i < len; i++) {
*pa = rand ();
pa++;
}
}
SORTNUMS/BIND:
______________________________________________________________________________
See Also
Refer to the Binder Programming Reference Manual for more information on both
binding C to C and binding from other languages to C.
b source-file-title
If the work file has a FILEKIND of BINDERSYMBOL, the short form of the BIND
command is
The default code title is OBJECT/source-file-title. This file contains the bound program.
Using Example 9–1, the following command produces the executable code file
OBJECT/SORTNUMS/BIND:
b sortnums/bind
Alternatively, the Binder input can be supplied as part of the WFL job, shown as
follows:
Running C Programs
A program written in C can be run from many different environments, including the
following:
This section briefly describes how to run programs from some of these environments.
Refer to the reference manuals for each environment for detailed information.
The object file from the C compiler can be run directly if the source file defines the
procedure main. Calling a procedure that is not defined causes a run-time error.
Referencing data that is not defined causes unpredictable results. A standard library
function can be called without a bind step, provided its header file was included.
If the C source exists in separate source files or does not include the library headers,
then the code file must be bound before it can be executed.
Program Parameters
When a C program is invoked, optional arguments to the program can be supplied on
the command that invoked the program. These are called command-line-arguments
and they are allowed only when the function main is declared with the argc, argv
parameters. In this case, the C compiler generates a program with a REAL ARRAY
parameter with an asterisk (*) lower bound. This is the parameter expected by the
various environments that can supply command-line-arguments.
If main is declared with no parameters, the program that is generated does not have
any parameters. The environments signal an error if such a program is invoked with
command-line-arguments.
Note: The redirection of the standard input and output files using input-file-title
and output-file-title is currently not supported; the angle bracket and the file title
are passed as parameters into the program. This might change in the future and
users are urged not to rely on parameters with leading angle brackets being passed
to the program.
Refer to Section 10, “TITLESYNTAX Option,” for more information on the file title
changes that occur during compilation.
;&()|<>^-\
&|<>; or a space
WILD Parsing These parsing rules 1. A question mark (?) matches any single character
Rules extend the MINIMAL except the slash (/).
parsing rules with wild 2. A tilde (~) matches any string of characters except
character expansion for the slash. The empty string is considered a match.
file titles. Wild character
3. An equal sign (=) matches any string of characters,
expansion occurs when
including the slash. An empty string is considered a
a question mark (?), tilde
match.
( ~ ), or equal sign (=)
appears outside of single
quoted strings (’ ’).
The file title is used as a
pattern to find matching
titles of existing files.
The following examples show which argv values are produce when input is parsed
according to the ORIGINAL parsing rules:
Example 1
This input:
u foo (")(")"()" on at at on
argv[1] = (")(")"()" ON AT AT ON
/* Where usercode is ")(" */
/* filename is "()" */
/* family name is AT */
/* host name is ON */
Example 2
This input:
r foo("on on on on on at at at at at")
argv[1] = on on on
argv[2] = on on at at at
argv[3] = at
argv[4] = at
Example 3
This input:
u foo abc,def<hij>klm
argv[1] = on on on
argv[1] = ABC,DEF
argv[2] = <HIJ
argv[3] = >KLM
Example 1
When $TITLESYNTAX is TITLE, this input:
r foo("a/b on c at d a / b on")
argv[1] = a/b on c at d
argv[2] = a
argv[3] = /
argv[4] = b
argv[5] = on
Example 2
When $TITLESYNTAX is either PATHNAME or NXPATHNAME, this input:
r foo("a/b on c at d a / b on")
argv[1] = a/b
argv[2] = on
argv[3] = c
argv[4] = at
argv[5] = d
argv[6] = a
argv[7] = /
argv[8] = b
argv[9] = on
Example 3
This input:
u foo abc,def<hij>klm
argv[1] = ABC,DEF
argv[2] = <
argv[3] = HIJ
argv[4] = >
argv[5] = KLM
Wild character expansion does not occur in the family name or host name. If a host
name is specified, wild character expansion will not occur anywhere.
A AB AC ABC
A/B A/B/C A/C
B/C
u foo ? argv[1] = A
argv[2] = B
u foo A? argv[1] = AB
argv[2] = AC
u foo ~B argv[1] = AB
u foo =B= argv[1] = A/B
argv[2] = A/B/C
argv[3] = B/C
argv[4] = AB
argv[5] = ABC
If a C source file And is compiled into the Then run the file from
exists as . . . code file . . . CANDE using . . .
Lowercase letters and uppercase letters are preserved. The double quote character (")
cannot appear within the command-line-arguments.
A string within double quote characters (" ") has blanks and lowercase letters
preserved. Outside of double-quoted strings, lowercase letters become uppercased.
A string within single quote characters (’ ’) is not interpreted as possible commands
by CANDE. If the command-line-arguments start with a single quote, it must end with
the single quote; embedded single quotes are not permitted, but double quotes are
permitted.
Note: Running POSIX source files requires special handling. See “Running POSIX
Source Files” in this section for more information.
The following examples show which argv values are produced when the C source file
is run from CANDE:
Example 1
This input:
Example 2
This input:
If the current And is compiled into the code Then run the file from
work file is . . . file . . . the Editor using . . .
The following table shows the commands for running C source files that have not
been compiled into different code files from the Editor.
If the current work file is not . . . Then run the file from the Editor using . . .
Lowercase letters and uppercase letters are preserved. The double quote character (")
cannot appear within the command-line-arguments.
Lowercase letters and uppercase letters are preserved. The double quote character (")
cannot appear within the command-line-arguments.
A C program that references a ClearPath MCP run-time library can be run from WFL
using the following command:
Note: Running POSIX source files requires special handling. See “Running POSIX
Source Files” in this section for more information.
RUN OBJECT/FOO/C("parameters")
File Equation
Using standard file equation, the standard input, output, and error files can be
redirected from a remote file to some other system file. The file equation can be done
at run-time and only affects that run or it can be done at compile-time and affects all
runs. Refer to the reference manuals for each environment for information on how to
apply file equation at compile-time.
In the CANDE and WFL environments, apply file equation at run-time by following the
command with a semicolon (;) and the file equation list. For example, in CANDE, enter
the following:
The INTNAMEs for the three standard files are stdin, stdout, and stderr and can be file
equated as previously shown. Files that are explicitly opened are randomly assigned
an INTNAME and cannot directly be file equated. The fopen function enables attributes
to be specified and one of the attributes can be INTNAME. If INTNAME is set, the file
attributes are reset to their default values and then any file equation specified for that
INTNAME is applied. (The specifications of attributes is an extension of A Series C.)
For example, if the following fopen function is specified:
fopen("PRINT", "w,INTNAME=LPR");
Then, you can run the program with file equation applied to LPR as shown in the
following example:
run;file lpr(kind=printer);
To change any of the standard files from a remote file to a disk file, both the KIND and
TITLE attributes need to be specified. For explicitly opened files, only the TITLE
attribute is required; the KIND attribute defaults to disk.
Compiler control options affect the compilation process in the following ways:
Following the dollar signs is a succession of option clauses. A single CCR may contain
as many clauses as will fit; one CCR with several clauses is logically equivalent to
several CCRs each containing a single clause.
A CCR consisting of a single dollar sign character and no option clauses is called a “null
option record” and has no effect; such a record can be used to delete records from
the secondary input file when merging. Refer to “MERGE Option” in this section for
more details.
Options and keywords in CCRs may appear in any combination of uppercase and
lowercase characters.
A percent sign (%) is used to introduce comments on a CCR; the text following the %
sign is ignored. A % sign occurring inside a string is treated as a character in the string,
not a comment delimiter.
Syntax
The syntax for a CCR is defined as follows:
$
$$ <option phrase>
<include option>
<copy boundary option>
<conditional compilation option>
Explanation
<option phrase> The <option phrase> provides a means for setting the
values of compiler options.
<include option> The <include option> temporarily redirects the input
stream to an alternate source.
<copy boundary option> The <copy boundary option> defines regions of a source
file that can be used by an <include option>.
<conditional compilation The <conditional compilation option> provides a
option> convenient method for optionally omitting source
images.
The syntax for each of these options is outlined in the alphabetical listing of compiler
options.
Syntax
<option phrase>
Explanation
The options of the option phrase are discussed in the following pages.
A string option associates an internal compiler variable with a string value. String
options may either be set to a value, using the = syntax, or may have a string
concatenated onto the end of its present value, using the += syntax.
Examples
The first two string options are equivalent to the third in the following examples:
$ XXX = "ABC"
$ XXX += "DEF"
$ XXX = "ABCDEF"
Some Boolean options may also have an associated <string> value. In the following
example, the MERGE option is enabled and the title of the merge file is set to BLIT:
Value Option
A <value option> sets the value of an internal compiler variable, for example, setting
the number of errors that can be encountered before terminating a compilation.
Boolean Option
A Boolean option phrase can enable a Boolean option (set it to TRUE), disable a
Boolean option (set it to FALSE), or restore the setting of a Boolean option to a prior
value. The presence of a SET, RESET, or POP keyword establishes a mode that
controls the setting of the Boolean options that follow. The compiler control options
(also called dollar-card options) are initially processed in the SET mode. For example,
the following dollar-card options are equivalent; they each set option XYZ and reset
option ABC:
Each Boolean option is managed as a stack of up to 31 values plus the current value.
When a Boolean option is SET or RESET, the option is enabled or disabled,
respectively, and the previous setting is pushed onto the stack. When a Boolean
option is the object of a POP action, the current setting is discarded and the previous
setting is popped off the stack. If more than 31 values are pushed, the oldest are lost.
Syntax
The syntax for a <Boolean expression> is as follows:
<Boolean expression>
<Boolean term>
<Boolean factor>
<Boolean factor>
<Boolean factor>
NOT
!
^
TRUE
FALSE
( <Boolean expression> )
<Bool-type option>
<equality operator> <Boolean factor>
<int-type option> <relational optr> <unsigned integer>
<int-type option>
<enum-type option> <equality optr> <enumerated const>
VERSION <relational operator> <replace version>
<replace version>
Refer to “VERSION Option” later in this section for a description of <replace version>.
<Bool-type option>
<int-type option>
<enum-type option>
<integer option>
<enumerated option>
<enumerated constant>
An enumerated constant is a symbolic value that is assignable to the previous
enumerated option.
<equality operator>
=
==
<>
^=
!=
<relational operator>
The SET and RESET values are treated as TRUE and FALSE respectively for the
purposes of evaluating the Boolean expression. Note that when a Boolean option is
followed by the = <Boolean expression> clause and the mode is SET, the option is set
to the result of the Boolean expression rather than the constant value TRUE.
The following option phrase enables the OPTIMIZE option, but leaves the suboptions
at their current settings:
$SET OPTIMIZE
If ALL appears in the option phrase list, then all of the Boolean suboptions are set to
the current mode. For example, the following option phrase enables the OPTIMIZE
option and all of its Boolean suboptions:
The following option phrase enables the OPTIMIZE option, but disables all of its
Boolean suboptions:
If DEFAULT appears in the option phrase list, then all suboptions are restored to their
initial default values. For example, the following option phrase enables the OPTIMIZE
option and sets all of its suboptions to their default values:
AUTOBIND
BINDER
CLEAR
CODEGEN
CORRECTOK
CORRECTSUPR
DEBUG
LANGUAGE
LONG
MAKEHOST
OPTIMIZER
PATH
SEPARATE
SEPCOMP
SUPPORT
<Boolean option>
<immediate option>
<immediate option>
<binder_match option>
<optiondec option>
<page option>
<initialsource option>
<string option>
<value option>
ANSI Option
The ANSI option, when enabled, causes a syntax error to be issued for source code
that does not conform to the ANSI C standard.
<ansi option>
ANSI
In order for the execution of a C program to conform to the ANSI C Standard, the
PORT(CHAR2) and PORT(UNSIGNED) compiler control options must be set to TRUE. If
the STRINGS compiler control option is set to EBCDIC (the default), then the
PORT(SIGNEDCHAR) compiler control option must be left with its default value set to
FALSE.
ASCII Option
The ASCII option, when enabled, specifies that the ASCII character set is to be used to
represent the strings in the object program. The ASCII option should appear before
any program text is encountered.
<ascii option>
ASCII
Example
$SET ASCII is equivalent to $STRINGS = ASCII.
Note: Care should be taken when invoking this option in conjunction with the
setlocale function for locales other than the C language locale. For example,
selecting ASCII strings for a program that calls setlocale to select a locale whose
base character set is not ASCII may produce undesirable results.
BINDER_MATCH Option
The BINDER_MATCH option is used to verify that different object files were compiled
with the same set of compile-time options.
<binder_match option>
(Type: Immediate)
Setting the BINDER_MATCH option adds two strings to the object file. When two
BINDER_MATCH options have identical first strings (string1), the Binder verifies that
the second strings (string2) are also identical. If not, the Binder prints an error
message and the bind is aborted. Strings must match exactly, including uppercase and
lowercase letters.
The first string should not begin with an asterisk (*). First strings that begin with an
asterisk are for use by Unisys only.
You can specify multiple BINDER_MATCH options. Each option is stored and tested
separately. A compile-time error occurs when there are two BINDER_MATCH options
in the same file with the same first string and different second strings.
BINDINFO Option
Setting the BINDINFO option causes the compiled code file to be suitable for use by
the Binder and the Printbindinfo Utility. This option should appear before any program
text. Normally, this option need only be set if binding is required for a standalone
program (that is, a program with no external references).
<bindinfo option>
BINDINFO
(Type: Boolean; Default: TRUE if main is not defined or if there are external references;
otherwise FALSE)
BOUNDS Option
The BOUNDS option, when disabled, prevents the compiler from generating the
range-checking code that it would otherwise normally generate.
<bounds option>
BOUNDS
• ALIGNMENT
• HEAP
• STACK
ALIGNMENT
The ALIGNMENT subordinate option controls the generation of code that traps
alignment errors during pointer type conversions. For example, when a pointer is cast
into a pointer with a more strict alignment, the resulting pointer might not be aligned
with the original pointer. The ALIGNMENT subordinate option traps this error.
HEAP
The HEAP subordinate option traps memory accesses when C heap control structures
have become invalid.
When enabled, memory allocation or deallocation will cause a C program to fault with
“DYNAMIC ALLOCATION AREA CORRUPTED”, if the heap control structures are
invalid due to a corrupted heap. The FARHEAP option must be set for the HEAP
subordinate option to have any affect.
Note: When this subordinate option is disabled it is possible for the C heap
manager to return invalid data or enter an endless loop due to corrupted heap
control structures. It is highly recommended that this option remain enabled until a
program is fully debugged.
STACK
The STACK subordinate option controls the generation of code that traps overflow of
the software stack. Refer to “MEMORY_MODEL Option” in this section for details on
the software stack.
BYTEADDRESS Option
The BYTEADDRESS option, when enabled, causes all pointers to types int, float,
long double, and struct to be the number of bytes from the start of addressable
memory. When disabled, pointers to int and float are the number of words, and
pointers to long double and struct are the number of double words, from the start of
addressable memory.
<byteaddress option>
BYTEADDRESS
With BYTEADDRESS enabled, there is a performance gain for most programs on MCP
systems. The amount of gain is dependent on the structure of the programs.
Modules with the BYTEADDRESS option enabled may not be bound with modules
with the BYTEADDRESS option disabled.
CODE Option
If both the LIST and CODE options are enabled, the object code generated by the
compiler is included in the program listing. The CODE option is ignored if the LIST
option is disabled.
<code option>
CODE
CODEFILEINIT Option
The CODEFILEINIT option is used to specify how variables with constant initializers are
assigned. If the option is disabled, each variable, array element, or structure field is
assigned individually. If the option is enabled, the initializers of an array or structure are
read in as a block from the code file.
<codefileinit option>
CODEFILEINIT
For optimal performance, programs with few array or structure initializers should
disable this option; programs with a large number of array or structure initializers
should enable this option.
COMMANDLINE Option
The COMMANDLINE option is used to specify how the command line arguments are
parsed.
<commandline option>
For more information on the various parsing rules, refer to “Command Line Parsing” in
Section 9.
Refer to “TITLESYNTAX Option,” for more information on the file title changes that
occur during compilation.
CONCURRENTEXECUTION Option
The CONCURRENTEXECUTION option should be set if more than one task executes
within a program or library at the same time. A C Program that is compiled with $SET
CONCURRENTEXECUTION and #define _ASERIES_SOURCE 461 (or larger) can start and
manage threads.
Note: Threads are functions initiated by a program that not only run concurrently
with the program but also share the same data as the program.
<concurrentexecution option>
CONCURRENTEXECUTION
This option should be set before any program text, and in separately compiled
modules that are bound into programs supporting concurrent execution.
(Type: Immediate)
If the Boolean expression in the IF clause is TRUE, the records between the IF and a
subsequent ELSE IF, ELSE, or END are compiled and all records between any
subsequent ELSE IF, ELSE, and END cards are ignored. Similarly, if the IF clause is
FALSE, but a subsequent ELSE IF clause is TRUE, then the records between the ELSE
IF and subsequent ELSE or END are compiled, with the other cards omitted. If all IF and
ELSE IF clauses are FALSE, the records between the ELSE and END are compiled.
(Note that the ELSE IF and ELSE clauses are optional.)
Compiler control records encountered in the source language input between any IF,
ELSE IF, ELSE, or END compiler control option are always processed in the normal
fashion, regardless of the value of the Boolean-expression in the IF option.
In the following example, if OP1 or OP2 is enabled, records 1 through 10 are compiled.
Otherwise, if OP3 is enabled, records 11 through 16 are compiled; otherwise, records
17 through 20 are compiled.
$ IF (OP1 OR OP2)
<source records 1-10>
$ ELSE IF OP3
<source records 11-16>
$ ELSE
<source records 17-20>
$ END
(Type: Immediate)
If the string matches that which is used in an INCLUDE, the region of the file between
the COPYBEGIN and COPYEND records is included. Otherwise, COPYBEGIN and
COPYEND cards are treated as comments. Refer to “INCLUDE Option” for more
information.
DBLTOSNGL Option
When the DBLTOSNGL option is enabled, variables of type double are given the same
type and range as those of type float. When disabled, variables of type double are
given the same type and range as those of type long double.
<dbltosngl option>
DBLTOSNGL
If the range of type float is suitable for variables declared with type double, then this
option should be left enabled for improved run-time performance. This option should
appear before any program text.
DELETE Option
When the DELETE option is enabled, all source records from the secondary input file
(SOURCE) are ignored until the option is disabled. DELETE has no effect unless the
MERGE option is enabled. VOIDT is a synonym for DELETE.
<delete option>
The source records that are discarded as a result of this option are not written to the
new source file (NEWSOURCE) if NEW is enabled, nor do they appear in the program
listing.
Note: This option can appear only on a compiler control record in the primary input
file (CARD).
DURATION Option
The DURATION option specifies the lifetime of a C library. This option should appear
before any program text.
<duration option>
Refer to the System Commands Operations Reference Manual for more information
on the THAW system command.
<else options>
(Type: Immediate)
Refer to “IF Option” for a more detailed description of the conditional compilation
options.
<end options>
(Type: Immediate)
Refer to “IF Option” for a more detailed description of the conditional compilation
options.
ERRLIST Option
ERRLIST is a synonym for ERRORLIST. Refer to “ERRORLIST Option” for details.
ERRORLIMIT Option
The ERRORLIMIT option specifies the number of errors that can occur before a
compilation is terminated.
<errorlimit option>
If the error limit is exceeded when the NEW option is enabled, the new source file
(NEWSOURCE) is not created. The error limit is ignored by setting ERRORLIMIT to 0.
ERRORLIST Option
When the ERRORLIST option is enabled, error and warning messages are written to
the error file (ERRORS). If a <string> is associated with the option, the error file is
given the file title specified by the <string>.
<errorlist option>
If this option is enabled and LIST is disabled, error and warning messages appear only
in the error file. If both this option and LIST are enabled, error and warning messages
appear in both the error file and the program listing (LINE).
FARHEAP Option
The FARHEAP option enables a program or library to select the far heap management
mechanism instead of the default heap management mechanism. This option must be
set before any program text.
<farheap option>
FARHEAP
These subordinate options can be set only before any program text, and they are
ignored if the FARHEAP option is not set. The subordinate options are discussed in the
following paragraphs.
The ALLOCMEMORY option enables you to select the allocation algorithm that works
best with your C application.
If FIRSTFIT is selected, available blocks of memory are kept in an unsorted list with the
most recently freed block at the front of the list. Requests to allocate memory result
in searching the available list for the first block that is large enough to satisfy the
request. If a large enough block is found, it is removed from the list and divided into
two blocks if it exceeds the requested size. The remaining portion, if any, is inserted
back on the front of the available list. If none of the blocks on the available list is large
enough, memory is allocated from the top of the heap.
If BESTFIT is selected, available blocks of memory are kept in an unsorted list with the
most recently freed block at the front of the list. Requests to allocate memory result
in searching the available list for the block that best fits the request. If a block is found,
it is removed from the list and divided into two blocks if it exceeds the requested size.
The remaining portion, if any, is inserted back on the front of the available list. If none
of the blocks on the available list are large enough, memory is allocated from the top
of the heap.
If FASTFIT is selected, available blocks of memory are kept in an unsorted list with the
most recently freed block at the front of the list. Requests to allocate memory result
in searching the first two blocks on the available list for the first block that is large
enough to satisfy the request. If a large enough block is found, it is removed from the
list and divided into two blocks if it exceeds the requested size. The remaining portion,
if any, is inserted back on the front of the available list. If neither of the two blocks at
the front of the available list is large enough, the smaller of the two is moved to the
end of the available list. Memory is then allocated from the top of the heap.
Of the three choices, BESTFIT makes the best use of memory. It makes use of
previously freed memory whenever possible and keeps heap fragmentation to a
minimum. However, BESTFIT does perform slower because of the overhead that
results from searching through the entire available list.
The best performance choice is FASTFIT because it does not use a sorted list and only
searches a small portion of the available list each time. However, FASTFIT prefers to
use new memory instead of memory that has been previously freed. The total amount
of memory used by a program may be higher if this option is used.
In terms of memory utilization and performance, the FIRSTFIT option falls somewhere
between the BESTFIT and FASTFIT options.
INSTALLMEMORY
Bound programs in other languages can also use the INSTALLMEMORY option. The
name of the function in the Binder is __INSTALLMEMORY. The following USE
statement can be added to a bind deck in order to bind the function as
INSTALLMEMORY:
The INSTALLMEMORY function can also be passed to an external function with a non-
C linkage class as the hidden parameter __install_memory_t. Refer to Appendix A,
“Interface to the Library Facility,” for more information on the use of hidden
parameters.
Restrictions
Abuse of the INSTALLMEMORY option may violate system integrity and may cause
system dumps. Therefore, if the INSTALLMEMORY option is set, the object code file is
marked by the compiler as unsafe and non executable. The INSTALLMEMORY option
is unsafe because the program activation owning an array installed in the heap might
exit while the array is part of the heap, thus causing the heap to become invalid. The
object file can be made executable by using the MP ODT system command, or it can
be enabled as a library with the SL ODT system command. You should not use
INSTALLMEMORY if you cannot meet the following restrictions:
• Ensure that no array installed in the heap is ever deallocated before being freed
from the heap.
• An array installed in the C heap can never be resized while in the heap. If resizing is
necessary, first ensure that the array is not concurrently being accessed through
the heap. Free the array from the heap using the _sfree function in the <alloc.h>
header, resize it, and then use the INSTALLMEMORY option again to put it back
into the heap.
ONE
Setting the ONE option in all of the C modules of a program enables the heap to grow
up to the maximum array size allowed by the MCP and the machine. This option
should be set when the C program requires malloc() larger than the limit imposed by
the FARHEAP option with the ONE option reset.
Refer to “MEMORY_MODEL Option” for more information on the various limits on the
heap size.
Restrictions
Setting the ONE option imposes the following restrictions:
• All bound C object files must have the ONE option set.
• The MEMORY_MODEL option must be set to TINY or SMALL. The heap is
restricted to one array row.
• The INSTALLMEMORY option must be reset. Calls on INSTALLMEMORY,
_smalloc(), _sfree(), _srealloc(), and _scalloc() signal an error at compile time.
• The RESIZEMEMORY option must be reset.
• The first argument for calls on the FP_MK() function in <alloc.h>, also known as
the segment number, must be 0. Otherwise, a run-time assertion fault occurs.
RESIZEMEMORY
Setting the RESIZEMEMORY option in all of the C modules of a program enables the
number of heap segments to be increased as needed.
Restriction
Before using the RESIZEMEMORY option, you must ensure that no code other than
the C heap management mechanism ever performs a resize or deallocation of any of
the heap segments or arrays. A resize or deallocation can violate system integrity and
can cause system dumps. Thus, if the RESIZEMEMORY option is set, the object code
file is marked by the compiler as unsafe and non executable. The object code file can
be made executable by using the MP ODT command, or it can be enabled as a library
with the SL ODT command.
The STACKSIZE value is used to reserve a fixed number of words of memory for the
addressable stack of the program in either the near or far heap as determined by the
MEMORY_MODEL option. When a STACKSIZE value is not specified, the compiler
generates code that is executed when entering a function that checks to see if
enough stack remains for the function. If there is not enough stack for the function,
the compiler allocates a new piece by calling a heap management routine.
Companion code is also generated by the compiler and executed just before exiting
the function that deallocates any stack pieces that may have been allocated upon
entering the function. All of the checking, allocation, and deallocation can be avoided
for the addressable stack contained in the default heap by providing the compiler with
a fixed STACKSIZE value. This will decrease the size of the generated object code and
may improve execution-time performance. A further reduction in the amount of
checking code generated can be achieved by resetting the STACK subordinate option
of the BOUNDS compiler control option.
If a STACKSIZE value is specified and the STACK option of the BOUNDS compiler
control record is set, the following fault message occurs if the addressable stack of
the program exceeds the number of words specified for the STACKSIZE value:
If the STACK option of the BOUNDS compiler control record is reset and the
STACKSIZE value is exceeded, then the result is unpredictable. However, the most
likely result is a fault occurring at some point later in the program because of data that
is corrupted.
The range of the STACKSIZE value depends on the MEMORY_MODEL option that
determines the size and structure of the heap. The heap contains the addressable
stack and the dynamic memory area. The larger the specified STACKSIZE value, the
smaller the space for dynamic memory allocation. If the STACKSIZE value exceeds the
smaller of 16,777,215 words and the total initial heap size, the maximum value allowed
for the chosen memory model is used in its place. If the STACKSIZE value is specified
for multiple object files being bound together that have all been compiled with the
same memory model, the largest value is used by the bound program. If the object
files are compiled with different memory models, the largest near and far STACKSIZE
values are used by the bound program. Refer to “MEMORY_MODEL Option” in this
section for more information.
FOOTING Option
The FOOTING option specifies a string that is to be printed at the bottom of each page
of the program listing, preceded by a blank line. The compiler uses the last value
declared as the footing on the compilation listing.
<footing option>
(Type: String)
If the LIST option is disabled or if the PAGESIZE is less than 6, this option has no effect.
IF Option
The IF option is one of the conditional compilation options used to conditionally
include or omit certain records in the compilation. Compiler control options
encountered in the source language input between any IF, ELSE IF, ELSE, or END
compiler control options are always processed in the normal fashion, regardless of the
value of the Boolean-expression of the IF option.
<if option>
IF <boolean-expression>
(Type: Immediate)
If the IF option Boolean-expression is TRUE, the records between the IF option and a
subsequent ELSE, ELSE IF, or END compiler option are compiled and all records
between any subsequent ELSE or ELSE IF and END compiler options are ignored.
If the both the IF option and subsequent ELSE IF option are FALSE, the records
between the ELSE (if specified) and END options are compiled.
INCLNEW Option
When the INCLNEW option is enabled, source language records that are read from an
INCLUDE file are written to the new source file (NEWSOURCE). If the NEW option is
disabled, INCLNEW has no effect.
<inclnew option>
INCLNEW
If this option is enabled and the SEQUENCE option is also enabled, the source records
from the included file are assigned new sequence numbers; otherwise, their sequence
numbers remain unchanged.
INCLLIST Option
The INCLLIST option is a synonym for the LISTINCL option. Refer to “LISTINCL Option”
in this section for details.
<listincl option>
INCLUDE Option
The INCLUDE option is used to temporarily redirect the input stream to an alternate
source. When that source is exhausted, input resumes with the source record
immediately following the INCLUDE.
<include option>
<device name>
The device names (DISK, EDITOR_DISK, EDITOR, PACK, DISKPACK, EDITOR_PACK ) are
included only to facilitate the migration of code from V Series platforms to A Series
platforms. Although a warning will be generated, including a device name has no
effect on the compiler.
<range>
(Type: Immediate)
If an identifier is supplied on the INCLUDE card, that identifier is used as the INTNAME
of the file to be included. The INTNAME of the file can then be file equated at compile-
time. For example, given the following INCLUDE card:
$ INCLUDE THATFILE
The identifier THATFILE can be file equated to the actual file to be included in the
following compile statement:
If a string is supplied as the argument to INCLUDE, the string, along with the partial file
titles supplied in the SEARCH path, is used to form the title of the file to be included
(refer to “SEARCH Option” in this section for details on search paths). For example,
the following include option contains the file named MYINCLUDEFILE ON MYPACK.
The INCLUDE card may contain a range that specifies the region of the file to be
included. The range is indicated by a string, a sequence number, or a pair of sequence
numbers. If no range is supplied, the entire file is included.
If the range consists of a string, the region of the file demarcated symbolically through
the COPYBEGIN and COPYEND options is included. For example, assume the file XYZ
contains the following region:
In this example, the region of file XYZ between the COPYBEGIN and COPYEND records
is included. The strings must match exactly, including the casing of any letters, and
only the first 30 characters are used to form the unique string.
If a single sequence number is supplied in the range, the record with the matching
sequence number in the file is included. If a pair of sequence numbers is supplied, the
records whose sequence numbers fall within that range are included. If only the
second sequence number is supplied, the first sequence number is assumed to be
that which terminated the most recent range from the same included file. The
following example includes the record with sequence number 3000 from XYZ:
The following example includes the records with sequence numbers 4000 through
5500:
The following example includes the records with sequence numbers 5501 through
8000:
Note: An INCLUDE card may not appear in an INITIALCCI file. Refer to “The
INITIALCCI File” in Section 9 for a description of INITIALCCI files.
Refer to “TITLESYNTAX Option” for more information on the file title changes that
occur during compilation.
INITIALSOURCE Option
The INITIALSOURCE option specifies a string that represents a C source line to be
parsed and compiled before the first source token of the program.
<initialsource option>
An equal sign (=) cannot occur between INITIALSOURCE and <string>. If <string>
contains an error, the error is reported against the line that contains the first source
token.
Examples
The INITIALSOURCE option can be specified in the INITIALCCI file:
The option can also be specified in the source file before the first source token:
/* comment */
$INITIALSOURCE ’#include <float.h>’
$INITIALSOURCE ’double MAX = DBL_MAX;’
#include <stdio.h>
main() {
printf("Double Maximum = %E\n", MAX);
}
LEVEL Option
The LEVEL option controls the level at which program globals occur in the program
stack. Globals normally occur at level 2. However, by setting the level to 3, you can
create a nested C program. The LEVEL option should appear before any program text.
To use a nested C program, you must bind the program as a single function into a
level 2 C program. The arguments of the function and the return type must match
those of the nested program’s main function. Calling the function causes the nested
program to initialize and run. All external variables and functions in the nested program
that are not resolved within the nested program are mapped by the Binder to variables
and functions in the level 2 program.
Variables and functions that are resolved, including all static variables and functions,
are local to the nested program. Therefore, the variables and functions are
automatically allocated for each call of the nested program.
The nested program uses the same heap as the level 2 program, so data pointers can
be shared between them. However, a function pointer is usable only in the program
where it is created. A nested program can make a pointer point to an external level 2
function, but using the pointer outside of the nested program will produce
undetermined results.
When a nested program exits by calling the exit function or by returning from its main
function, the status value passed to the exit function or returned from the main
function is returned as the function result of the nested program. All functions
registered by the atexit function are called in reverse order of their registration. Files
are not automatically closed because files actually occur at level 2.
Example
The following is an example of a level 2 host program, a nested program, and the
Binder input to combine the two files:
______________________________________________________________________________
File 1: EXAMPLE/HOST
File 2: EXAMPLE/LEVEL3/PROGRAM
$$set level 3
extern int global;
int local;
main ()
{static int staticLocal;
global++; /* adds 1 to global on each call */
local++; /* sets local to 1, because it gets
initialized on each call */
staticLocal++; /* sets staticLocal to 1, like local */
return;}
File 3: EXAMPLE/BIND
______________________________________________________________________________
To bind a nested program, give the name of the corresponding level 2 function in the
BIND statement. The Binder can bind multiple nested programs into a level 2 program,
but it cannot bind multiple level 3 subprograms to create a nested program. If you
want to create a nested program from multiple source modules, then you must
combine the source modules (by using the #include directive or by editing) so that
they are compiled together.
LIBRARY Option
Setting the LIBRARY option causes the compiler to generate code for each function
separately, with the resulting code stored in a single code file. Also, this option causes
binding information to be generated. For more information, refer to “BINDINFO
Option” in this section.
<library option>
LIBRARY
This option should appear before any program text. Normally, this option does not
need to be set explicitly.
LIMIT Option
The LIMIT option is a synonym for the ERRORLIMIT option. Refer to “ERRORLIMIT
Option” in this section for details.
<errorlimit option>
LINEINFO Option
When the LINEINFO option is enabled, the compiler saves source record sequence
numbers in the CODE file.
<lineinfo option>
LINEINFO
If the program terminates abnormally, the source record sequence number associated
with the point of program termination is displayed. If an LI_SUFFIX string has been
specified, the string appears after the sequence number.
The LINEINFO option can be changed only before any program text.
VERBOSE
If the VERBOSE option is set, the displayed stack history will include the names of the
functions in the call chain up to the point of termination. Note that this will cause a
larger code file to be generated than if the option were disabled.
LINT Option
The LINT option controls the generation of some compile-time warnings. Setting the
LINT subclass options can make porting an application to A Series easier. This option
should appear before any program text.
<lint option>
LINT
When the LINT option is reset, suboption values are ignored by the compiler. The
LINT option has the following subordinate options:
• ANSI
• _ASERIES_SOURCE
• BITWISE
• CAST
• FUNCTION
• KNR_EXTERN
• KNR_FUNCTION
• KNR_KW
• KNR_POINTER
• KNR_STDFUNC
• _POSIX_SOURCE
• PRAGMA
• SETJMP
• UNUSEDOBJECT
• UNUSEDSTATICFUNCTION
ANSI
ANSI
When the ANSI option is enabled, a warning message is generated for ANSI syntax
warnings.
_ASERIES_SOURCE
_ASERIES_SOURCE
BITWISE
BITWISE
CAST
CAST
FUNCTION
FUNCTION
When enabled, a warning is generated when a function is referenced that has not yet
been declared.
KNR_EXTERN
KNR_EXTERN
KNR_FUNCTION
KNR_FUNCTION
Examples
$PORT (KNR_FUNCTION)
$LINT (RESET KNR_FUNCTION)
When the $RESET ANSI option is set, the compatibility checking between a function
prototype and an old-style function definition is relaxed. When two functions have
equivalent parameter type lists, the functions are treated as compatible functions.
KNR_KW
KNR_KW
When the KNR_KW option is set, the warning message for $PORT(KNR_KW) is
suppressed.
KNR_POINTER
KNR_POINTER
KNR_STDFUNC
KNR_STDFUNC
_POSIX_SOURCE
_POSIX_SOURCE
PRAGMA
_PRAGMA
When the PRAGMA option is enabled, a warning message is generated for unknown
pragmas.
SETJMP
SETJMP
When the SETJMP option is enabled, a warning is generated when a call to the setjmp
macro does not conform to the ANSI C Standard.
UNUSEDOBJECT
UNUSEDOBJECT
When enabled, a compiler warning message is generated when declared objects are
not used. Declared objects that are initialized are considered to have been referenced
and do not generate a warning message.
UNUSEDSTATICFUNCTION
UNUSEDSTATICFUNCTION
When enabled, a warning message is generated when declared static functions are
not used.
LIST Option
When the LIST option is enabled, the compiler writes a listing of the program to the
output listing file (LINE). The listing includes the source records, error and warning
messages, and a compilation summary.
<list option>
LIST
LISTDOLLAR Option
When the LISTDOLLAR option is enabled, temporary compiler control records are
written to the program listing (LINE) and the settings of the compiler options that
appear in the program are included in the compilation summary. If the LIST option is
disabled, this option has no effect.
<listdollar option>
LISTDOLLAR
LISTINCL Option
The LISTINCL option, when enabled, causes the compiler to write all source records
that were read as the result of an INCLUDE statement to the output listing (LINE). This
option is independent of the LIST option.
<listincl option>
LISTINITIALCCI Option
The LISTINITIALCCI option, when enabled, causes the compiler to write the contents
of the INITIALCCI file to the first page of the program listing.
<listinitialcci option>
LISTINITIALCCI
The LISTINITIALCCI compiler control record must appear in the INITIALCCI file for this
option to take effect. If the LIST option is disabled, this option has no effect.
LISTOMITTED Option
The LISTOMITTED option, when enabled, causes the compiler to write all source
records omitted through the OMIT option to the program listing (LINE) and to mark
those records as omitted. If the LIST option is disabled, this option has no effect.
<listomitted option>
LISTP Option
The LISTP option, when enabled, causes source records from the primary input file
(CARD) to be written to the program listing (LINE).
<listp option>
LISTP
Source records from the secondary input file (SOURCE) are not written. The LIST
option, when enabled, overrides the setting of LISTP, that is, the LIST option causes
both primary and secondary source records to be written.
LI_SUFFIX Option
The LI_SUFFIX option enables the specification of a string of characters to be written
to the code file along with LINEINFO.
<li_suffix option>
(Type: String)
If the LINEINFO option is disabled, this option has no effect. Each sequence number
written to the code file is appended with the LI_SUFFIX string. Refer to “LINEINFO
Option” in this section for additional information.
Parentheses, commas, and periods should not be used in LI_SUFFIX strings. These
characters are used to delimit LINEINFO and code addresses in stack histories, so their
presence in LINEINFO can cause problems for existing software such as CANDE which
parses stack histories.
If an LI_SUFFIX string is longer than 40 characters, only the first 40 characters are put
in the LINEINFO.
LONGLIMIT Option
The LONGLIMIT option specifies the maximum length (in words) of a nonpaged array.
<longlimit option>
MAP Option
Enabling the MAP option causes the compiler to write information regarding the
allocation of variables and procedures to the output listing (LINE). This option is
independent of the LIST option.
<map option>
MEMORY_MODEL Option
The MEMORY_MODEL option controls the size and structure of the heap provided for
the program.
<memorymodel option>
Each C program is provided an area for user data known as the “heap”. The heap
consists of two parts: the software stack and the dynamic memory allocation area.
When the FARHEAP option is reset, these two areas grow toward each other from
opposite “ends” of the heap. Otherwise, the software stack is allocated in chunks
from the dynamic memory allocation area. When the stack bounds-checking code (the
BOUNDS subordinate option STACK) is enabled, the program terminates and a stack
overflow error message is issued if the software stack collides with the boundary of
the dynamic memory allocation area.
Data objects that are not appropriate for the hardware stack are put in the software
stack, such as objects that are addressed, arguments in variable length argument lists,
and so forth. The software stack increases and decreases in size as procedures or
functions with such data objects are entered and exited.
The dynamic memory allocation area is used by language functions that provide such
capability (such as malloc and free). As memory is allocated, this area is enlarged. If
such an allocation causes a collision with the software stack, the allocation fails. As
the memory is deallocated, the dynamic memory allocation area shrinks, leaving more
space for the software stack.
The MEMORY_MODEL option provides four alternatives that determine the size and
structure of the heap. They differ in two respects: the number of array rows used for
the heap and the size of each array row. The choice of memory model can have a
dramatic effect on program performance and utilization of system resources. This
option should appear before any program text.
• The value of the TARGET option at compile time and the machine level at run time.
Refer to “TARGET Option” in this section.
• Whether or not the FARHEAP option is set.
If TARGET specifies only LEVEL4 machines and the FARHEAP option is reset, models
LARGE and HUGE are treated as model SMALL. If a program with model SMALL runs
on a LEVEL4 machine, the heap size is 16,777,215 words. Otherwise, the behavior is as
described in the following paragraphs.
Models TINY and LARGE use nonpaged array rows. These arrays are always present in
memory when the program is active, making access to them relatively fast. Models
SMALL and HUGE, on the other hand, use paged array rows. These rows have a larger
capacity, but have a slower access time.
Models TINY and SMALL have less capacity, by virtue of being one-dimensional arrays,
than LARGE and HUGE. However, the additional capacity of LARGE and HUGE comes
with a performance cost due to the additional overhead of indexing two-dimensional
arrays. Therefore, the best rule in selecting a memory model is to choose the smallest
option that still allows a given program to compile and execute correctly.
If the FARHEAP option is set, all four memory models use a two-dimensional array for
the heap. If the ONE option is set, the number of rows is fixed at one. If the
RESIZEMEMORY option is set, the number of rows will grow as required up to 32,768
on all memory models. Otherwise, the TINY and SMALL models have 32 rows and the
LARGE and HUGE models have 1,024 rows. Refer to “FARHEAP Option” in this section
for more information.
During run time, if the FARHEAP option is set and the MEMORY_MODEL is TINY or
LARGE, the rows of the heap will be segmented as needed if a program uses more
than the LONGLIMIT words of heap space. For example, given the following compiler
control options in a program:
$SET FARHEAP
$MEMORY_MODEL = TINY
If a program uses more than LONGLIMIT words of heap space during run time, the
farheap manager will resize the heap to the same size as the SMALL memory model.
That is, the program will run under the TINY memory model until it needs more than
LONGLIMIT words of heap, then it automatically switches to the SMALL memory
model. If this situation occurs when the FARHEAP option is not set, the program is
programmatically discontinued when it exceeds LONGLIMIT words of heap. Likewise,
if the LARGE model is specified and insufficient space remains for an allocation
request, then the heap will be resized to the HUGE memory model one row at a time
as needed. Refer to “LONGLIMIT Option” for more information.
Tables 10–2 and 10-3 summarize the four memory models for the FARHEAP option
with the ONE option reset and set, respectively.
Table 10–2. Memory Models for the FARHEAP Option (ONE reset)
Note: If the FARHEAP option is not set, it is possible for programs to compile or execute
under the SMALL model that do not compile or execute under the LARGE model. This is due
to the fact that objects are never split across row boundaries. Therefore, a large object that
fits in the single bigger array row of the SMALL model may not fit in the smaller array rows
of the LARGE model.
Table 10–3. Row Sizes for Machines with FARHEAP option set (ONE set) †
MERGE Option
The MERGE option, when enabled, causes the compiler to merge source records from
the primary input file (CARD) with source records from the secondary input file
(SOURCE).
<merge option>
MERGE
<string>
=
If a string is specified, then the string, along with the partial file titles supplied in the
search path (if any), is used as the file title for SOURCE (refer to “SEARCH Option” in
this section for more details on SEARCH paths). Refer to “Input Files” in Section 9 for
more details on how input files are merged.
Refer to “TITLESYNTAX Option” for more information on the file title changes that
occur during compilation.
Note: This option remains in effect throughout the compilation and cannot be
disabled. It may appear only in the CARD file.
NEW Option
Enabling the NEW option causes the compiler to create a new source file
(NEWSOURCE) containing all source records that were accepted for compilation.
<new option>
NEW
<string>
=
The new file includes all records that were omitted by the OMIT option and all
permanent compiler control records, but does not include any records that were
discarded by enabling the DELETE or VOID options. If a string is specified, then the title
of the new source file is set to <string>. This option should appear before any
program text.
NEWSEQERR Option
Enabling the NEWSEQERR option causes an error to be issued if the sequence number
on a record of the new source file (NEWSOURCE) is not strictly greater than the
sequence number of the preceding record.
<newseqerr option>
NEWSEQERR
OMIT Option
Enabling the OMIT option causes all source records to be ignored until the option is
disabled. This option may be enabled from either the primary (CARD) or the secondary
(SOURCE) input files.
<omit option>
OMIT
Omitted records are written to the new source file (NEWSOURCE) if the NEW option
is enabled. Omitted records are not listed in the program listing unless the
LISTOMITTED option is enabled.
Compiler control options encountered in the source language input while this option is
TRUE are processed in the normal manner.
OPTIMIZE Option
Enabling the OPTIMIZE option causes optimizations to be performed prior to code
generation.
<optimize option>
OPTIMIZE
The option is examined at the beginning of each function and, if enabled, optimizations
are performed for that function. Although the setting of the option can be changed at
any time, only its setting at the beginning of a function is significant. The optimizations
performed include the following:
• GAMBLE
• LEVEL
• UNRAVEL
GAMBLE
Enabling the GAMBLE option allows the compiler to make certain assumptions in
order to perform some of the optimizations previously described, including:
• Applying the associative law to floating-point types, that is, changing a division to
a multiplication by a reciprocal
• Applying the associative law to integral types; that is, changing a subtraction to an
addition of an inverse
• Moving conditionally executed invariant expressions outside of loops
• Assuming array indices are within-bounds
• Assuming that variable strides are positive
The LEVEL option controls the amount of effort expended by the compiler in
optimizing a function. In general, the higher the LEVEL, the greater the optimization
effort. Higher LEVELs yield a potentially reduced run-time at the expense of an
increased compile-time. The LEVEL must range from 0 to 10.
UNRAVEL
The UNRAVEL option, when enabled, allows loops to be unraveled and certain
functions to be generated in-line.
OPTION Option
The OPTION option is provided as a means for declaring user options.
<option option>
OPTION <option phrase>
(Type: Immediate)
User options are Boolean options and may be set, reset, or popped just like any other
Boolean option. The user options must appear in the <option phrase>. The initial mode
setting may also appear in the <option phrase>. If a mode setting is not supplied, the
mode prior to the left parenthesis is used.
For example, the following statement declares user option IOLIST, which is disabled,
and ABCLIST, which is enabled:
The following statement declares user option OP1, which is enabled, and OP2, which is
disabled:
PAGE Option
The PAGE option causes the output listing to skip to the top of a new page.
<page option>
PAGE
(Type: Immediate)
If the LIST option is disabled, this option has no effect. If the OMIT option is enabled,
this option is ignored.
PAGESIZE Option
The PAGESIZE option sets the number of lines per page that are to be printed on the
output listing.
<pagesize option>
If PAGESIZE is set to a value less than 6, the listing is a contiguous unpaged stream
and the FOOTING and TITLE option settings are ignored. The PAGESIZE includes two
lines for the TITLE and two lines for the FOOTING, but only if a FOOTING is specified. If
the LIST option is disabled, this option has no effect.
PAGEWIDTH Option
The PAGEWIDTH option sets the number of columns per line that are to be printed on
the output listing. If the LIST option is disabled, this option has no effect.
<pagewidth option>
PCHECK Option
The PCHECK option, when enabled, causes strict run-time comparison of the actual
and the formal parameters of functions invoked by function pointers.
<pcheck option>
PCHECK
When the PCHECK option is enabled, actual and formal parameters must match in
number and type. When PCHECK is disabled, the run-time comparison of the actual
and formal parameters must match in number. Any single-word parameter type
(char, short, int, long, pointer, float, double) matches any other single-word
parameter type, and any double-word parameter type (long double, long long)
matches any other double-word parameter type.
__PDUMPINFO Option
The __PDUMPINFO option is used for debugging programs with the PRINTHEAP (Print
Heap) command in DUMPANALYZER.
<pdumpinfo option>
__PDUMPINFO
The __PDUMPINFO option causes the compiler to generate additional and more
specific bindinfo for use by the DUMPANALYZER utility. For information about
DUMPANALYZER, refer to the System Software Utilities Operations Reference
Manual.
1. Local directories are generated for static functions only in nested programs (see
the $LEVEL=3 option description in this section). Local directories provide
information about local variables.
2. Bindinfo generated for function arguments is limited to word and double word
operands or pointer addresses of items stored in the C heap.
PORT Option
The PORT option is used to port a C program developed for some other computing
environment onto an A Series system. This option should appear before any program
text.
<port option>
PORT
• CHAR2
• KNR_EXTERN
• KNR_FUNCTION
• KNR_KW
• KNR_POINTER
• KNR_STDFUNC
• SIGNEDCHAR
• SIGNEDFIELD
• TEXTASBINARY
• UNSIGNED
CHAR2
The CHAR2 option, when enabled, causes unsigned chars to be stored as two’s
complement values.
KNR_EXTERN
KNR_FUNCTION
KNR_KW
When the KNR_KW option is enabled, the following ANSI keywords are used as
normal identifiers:
• const
• enum
• signed
• void
• volatile
A warning message displays to indicate that ANSI keywords are used as identifiers.
KNR_POINTER
When the KNR_POINTER option is enabled, pointers of one type are allowed to assign
to pointers of another type without using explicit cast. A warning message is issued
to warn you of possible improper alignment. The warning message can be suppressed
by the LINT suboption with the same name. Refer to “LINT Option” in this section for
more information.
KNR_STDFUNC
When the KNR_STDFUNC option is enabled and a standard function is called but not
yet declared, the internal header for that function is implicitly included.
• <ctype.h>
• <local.h>
• <math.h>
• <signal.h>
• <stdio.h>
• <stdlib.h>
• <string.h>
• <time.h>
All other headers are not supported because they have type or macro definitions only.
When a header is implicitly included, a warning message such as the following is
issued:
SIGNEDCHAR
The SIGNEDCHAR option controls the default sign attribute for the char type. When
disabled, the plain char type is unsigned; when enabled, the plain char type is signed.
SIGNEDFIELD
The SIGNEDFIELD option controls the default sign attribute for structure or union bit
fields of type int. When disabled, a plain int bit field in a structure or union is
unsigned; when enabled, a plain int bit field in a structure or union is signed.
TEXTASBINARY
The TEXTASBINARY option controls the semantics of I/O streams. If this option is
enabled, text streams are treated as though they are binary streams, meaning that
UNSIGNED
The UNSIGNED option controls the semantics of the sign attribute for integer types. If
this option is disabled, unsigned integers are treated as signed integers; that is, normal
signed-magnitude arithmetic is performed. If the option is enabled, unsigned integers
are emulated as two’s-complement quantities. Enabling this option could slow down
performance and should be used only when absolutely necessary.
SEARCH Option
The SEARCH option is used to specify a search path used when processing an
INCLUDE or MERGE option.
Note: The following discussion makes references to INCLUDE, but such references
apply to MERGE as well.
<search option>
(Type: String)
The SEARCH string consists of a list of partial file titles separated by semicolons (;). A
partial file title, when combined with the title string of an INCLUDE, must form a
legitimate file title.
When processing an INCLUDE, the INCLUDE title is combined with each partial file title
specified by the SEARCH string until a file title is formed that matches the name of an
existing file; that file is then included. If the SEARCH string is exhausted without
finding a match, if the SEARCH string is null, or if the INCLUDE title begins with a slash,
the INCLUDE title itself is used to find the INCLUDE file.
An INCLUDE title may begin with one or more greater-than-signs (>). Each > causes
the search to skip a partial file title in the SEARCH string.
If the partial file title consists of a single dollar sign ($), the partial title is treated as
though it is the name of the primary input file (CARD), followed by the /= symbol. For
each dash (-) that follows the $, a node is dropped from the end of the primary input
file name and the /= is implicitly appended.
To form the final INCLUDE file title, the partial file title is scanned for an equal sign (=);
the first occurrence of = is replaced with the INCLUDE title.
Refer to “TITLESYNTAX Option” for more information on the file title changes that
occur during compilation.
The following example illustrates the use of the SEARCH option. Assume the title of
the CARD file is “GRAPHICS/EXE” and compiler option TITLESYNTAX equals TITLE or
PATHNAME.
The previous sequence causes in the following file titles to be formed when
processing the INCLUDE file title (the search stops as soon as a title matches an
existing file):
GRAPHICS/GRAPH/C
SYSTEM/UTILITIES/GRAPH/C ON UTILPACK
(CHARLIE) UTILITIES/GRAPH/C
GRAPH/C
The following example illustrates the use of the SEARCH option with POSIX APIs and a
complier option TITLESYNTAX that equals NXPATHNAME.
#include <jni.h>
#include "Dummy.h"
The previous sequence forms the following absolute PATHNAMEs when processing
#include <jni.h>:
/-/USERS/USERCODE/JONES/"JNI.H"
/-/DISK/SYMBOL/CC/LIBRARY/"JNI.H"
The previous sequence forms the following absolute PATHNAMEs when processing
#include "Dummy.h":
/-/USERS/USERCODE/JONES/"DUMMY.H"
/-/DISK/SYMBOL/CC/LIBRARY/"DUMMY.H"
SEQUENCE Option
Enabling the SEQUENCE option causes the compiler to assign new sequence numbers
to the source records accepted for compilation.
<sequence option>
This option affects only those source records read by the compiler following a MERGE
option and includes those records omitted by the OMIT option. The SEQUENCE option
assigns the current sequence base to the current source record and increments the
base by the current sequence increment (refer to “SEQUENCE INCREMENT Option” in
this section).
SHARING Option
The SHARING option is used in a C library to specify how other programs are to share
the library. This option should appear before any program text.
<sharing option>
SIGNEDCHAR Option
This option is obsolescent; the PORT option should be used instead.
SIGNEDFIELD Option
This option is obsolescent; the PORT option should be used instead.
STACK Option
Stack is a synonym for MAP. Refer to “MAP Option” for details.
<stack option>
STATISTICS Option
The STATISTICS option, when enabled, causes timing statistics to be gathered for a
specified function.
<statistics option>
STATISTICS
The option is examined at the beginning of each function and, if enabled, statistics are
gathered for that function. Although the setting of the option can be changed at any
time, only its setting at the beginning of a function is significant. At program
termination, the statistics information is printed out to the TASKFILE.
Additional characters may precede some function names in the statistics data:
If the function
name is preceded Then it. . .
by . . .
The statistics include the number of times the function is called and the amount of
time spent in the function, both inclusive and exclusive of the amount of time spent in
the functions called by that function.
The STATISTICS option can be used with individual subprograms of a bound program.
When the bound program terminates, statistics are printed independently for each
subprogram compiled with the option.
The STATISTICS option and the TADS option cannot be set at the same time. If both
options are set at the same time, the STATISTICS option resets, the production of
statistics information is halted, and the following warning is issued.
• BLOCK
• PBITS
• TERSE
BLOCK
If the BLOCK option is set, statistics are gathered for each execution path in the code.
These statistics include the number of times each line of code is executed and the
amount of time spent executing that line.
PBITS
If the PBITS option is set, statistics are gathered about the initial pbits and other pbits
occurring in the program.
TERSE
If the TERSE option is set, functions which were not called will not be listed in the
statistics output.
STRINGS Option
The STRINGS option specifies the character set to be used to represent strings in the
object program. The STRINGS option should appear before any program text.
<strings option>
Note: Care should be taken when invoking this option in conjunction with the
setlocale function for locales other than the C language locale. For example, selecting
ASCII strings for a program that calls setlocale to select a locale whose base character
set is not ASCII may produce undesirable results.
SUMMARY Option
The SUMMARY option, when enabled, causes a compilation summary to be written to
the output listing (LINE), regardless of the setting of the LIST option.
<summary option>
SYSTEMINCLUDES Option
When the SYSTEMINCLUDES option is enabled, a standard library header is not read
when a standard library is through the #include directive; rather, the definitions in the
header file are made known to the compiler internally. When the option is disabled,
the compiler searches for a library header file to read (subject to the current SEARCH
path setting; refer to “SEARCH Option” for details).
<systemincludes option>
SYSTEMINCLUDES
TADS Option
The TADS option is used to compile a program for use with the C Test and Debug
System (TADS).
<tads option>
TADS
The TADS option and the STATISTICS option cannot be set at the same time. If both
options are set at the same time, the STATISTICS option is reset, the production of
statistics information is halted, and the following warning is issued.
For more information, refer to the C Test and Debug System (TADS) Programming
Reference Manual. There is one subordinate option:
REMOTE
= "STDIN"
The REMOTE option enables TADS to share a remote input file with the program being
tested. Sharing may be necessary if the program opens a remote input file because
only one remote input file can be open on a station at any given time. The optional
string “STDIN” indicates the internal file name (INTNAME) of the file to be shared with
TADS (currently, no file other than the stdin stream can be shared).
TARGET Option
The TARGET option designates a specific computer system or group of systems as
the target for which the generated object code is optimized. This option can be used
to specify all machines that must run the code file.
<target option>
If a secondary target is specified, the compiler does not generate any operators that
are valid for the system or systems identified by the primary target, and that are
invalid for the system or systems identified by the secondary target.
For a complete list of allowed target values, refer to the COMPILERTARGET system
command description in the System Commands Operations Reference Manual.
Examples
TARGET=THIS
The compiler optimizes the object code file for the system on which it is compiled.
TARGET=THIS (ALL)
The compiler optimizes the object code file for the system on which it is compiled, but
does not generate any operators that are invalid for other machines.
TIME Option
TIME is a synonym for SUMMARY. Refer to “SUMMARY Option” in this section for
details.
<summary option>
TITLE Option
The TITLE option specifies a string that is to be printed at the top left corner of each
page of the program listing. The compiler uses the last value declared as the title on
the compilation listing.
<title option>
(Type: String)
By default, <string> is the name of the compiler. If the LIST option is disabled or if the
PAGESIZE is less than 6, this option has no effect.
TITLESYNTAX Option
The TITLESYNTAX option specifies which file name attribute, title or pathname, and
parsing rules to apply when a file name is found in the source.
<titlesyntax option>
File Titles
When TITLESYNTAX has the following values, it affects file titles as follows.
TITLE
Converts periods Converts Does not Uses LTITLE. a\b.c -> A/B/C
(.) and lowercase automatically a/b.c -> A/B/C
backslashes (\) to letters to quote nodes if
slashes (/). uppercase required.
a/"b.c" -> A/"b.c"
letters.
PATHNAME
Converts periods Converts Does not Uses TITLE. a\b.c -> A/B/C
(.) and lowercase automatically A/b.c -> A/B/C
backslashes (\) to letters to quote nodes if
A/"b.c" -> A/"b.c"
slashes (/). uppercase required.
letters.
NXPATHNAME
File Attributes
The following file attributes affect the file titles as follows.
LTITLE
The LTITLE attribute allows larger limits on the length of a node and on the number of
nodes in the file title if the system option SYSOPS LONGFILENAMES is set.
The code generated by the compiler uses either LTITLE or PATHNAME, depending on
whether the code is compiled for ANSI or for POSIX, respectively. Like LTITLE, the
PATHNAME attribute allows a larger limit. The arguments in a C program also have
their wildcard expansion done using larger limits.
PATHNAME
Since LTITLE cannot be used for POSIX, the file attribute PATHNAME allows a new
syntax for file names, wherein files can be specified relative to a current working
directory. In this new syntax, file names cannot be altered and family substitution and
usercode/* substitution is not allowed.
SEARCHRULE
File attribute SEARCHRULE is used to specify which look-up rules are applied. If
SEARCHRULE equals NATIVE, use normal family substitution and usercode/*
substitution. If SEARCHRULE equals POSIX, use current working directories, but do
not use family substitution or usercode/* substitution.
Refer to the ClearPath HMP NX and A Series File Attributes Programming Reference
Manual for explanations of file attributes LTITLE, PATHNAME, and SEARCHRULE.
UNSIGNED Option
This option is obsolescent; the PORT option should be used instead.
VERSION Option
The VERSION option is used to record information in the mark field of source records
that are written to the new source file (NEWSOURCE) or to create new VERSION
cards reflecting the current version number of a program symbolic in the
NEWSOURCE file.
<version option>
<replace version>
<update version>
The values <release>, <cycle>, <patch>, <rel-delta>, and <cycle-delta> must all be
unsigned integers. The <release> option can be no greater than 99. The <cycle>
option can be no greater than 999. The <patch> option can be no greater than 9999.
The version information contained on the first version card found by the compiler is
saved as the most current version information and is used for the rest of the
compilation. The <replace version> sets the new version number to
<release>.<cycle>.<patch>. The <update version> adds the <rel-data> to the current
release value and the <cycle-delta> to the current cycle value to build the new version
number.
If the MERGE and NEW options are enabled, any subsequent permanent version cards
are updated with the new version when that card is written to the NEWSOURCE file. If
a source record read from the CARD file has a patch mark in the mark field, that
record’s mark field is updated with a version number containing the current release
and cycle numbers plus the patch mark before the record is written to the
NEWSOURCE file. (A patch mark is a single unsigned integer in the mark field. Certain
system utilities, including the Editor and PATCH, assist in creating patch marks. Refer
to the Editor Operations Guide and the System Software Utilities Operations
Reference Manual for more information on these utilities.) The format of the version
number written to the mark field is RR.CCC.PPP or RRCCCPPPP (the latter if the patch
number requires four significant digits).
For example, given the following SOURCE file and CARD file :
The resulting NEWSOURCE file contains the following version card with the same
sequence number as the VERSION card in the SOURCE file:
$$ VERSION 3.126.0044
Each source record from the CARD file that has a number (in this case, the patch
number, 44) in the mark field has the version number 03.126.044 in its mark field in the
NEWSOURCE file.
VERSION can be tested in the <Boolean expression> used in compiler control options.
VERSION can be compared to a constant with the same syntax as <replace version>.
For example:
VOID Option
The VOID option, when enabled, causes all input records other than compiler control
records to be ignored by the compiler until the option is disabled.
<void option>
VOID
The ignored source is neither listed in the program listing (LINE) nor included in the
new source file (NEWSOURCE), regardless of the settings of LIST and NEW. Once the
VOID option is enabled, it can be disabled only by a compiler control record in the
primary input file (CARD).
VOIDT Option
VOIDT is a synonym for DELETE. Refer to “DELETE Option” in this section for details.
<delete option>
WARNFATAL Option
The WARNFATAL option, when enabled, causes warnings to be treated like errors.
<warnfatal option>
WARNFATAL
WARNSUPR Option
Enabling the WARNSUPR option prevents the compiler from issuing warning
messages.
<warnsupr option>
WARNSUPR
XREF Option
Enabling the XREF option causes the compiler to generate a printed listing containing
cross-reference information. This option must appear before any program text.
<xref option>
XREF
The information is written to the output listing (LINE). No listing is produced if a syntax
error occurs during compilation.
XREFFILES Option
The XREFFILES option, when enabled, causes the compiler to generate files that
contain cross-reference information.
<xreffiles option>
XREFFILES
<string>
=
These files can be used by the Editor or INTERACTIVEXREF. This option should appear
before any program text.
The titles of the generated files are XREFFILES/<code file name>/DECS and
XREFFILES/<code file name>/REFS. If a string is specified, the files are
XREFFILES/<string>/DECS and XREFFILES/<string>/REFS.
XREF file titles are affected by the value of the compiler option TITLESYNTAX as
follows.
TITLE XREFFILES/<file>/DECS
XREFFILES/<file>REFS
PATHNAME XREFFILES/<file>/DECS
XREFFILES/<file>/REFS
NXPATHNAME <file>.DECS
<file>.REFS
See “TITLESYNTAX Option” for a description of the effects of TITLE, PATHNAME, and
NXPATHNAME on node <file>.
XSOURCE Option
The XSOURCE option controls the generation of macro-expanded source.
<xsource option>
When XSOURCE is set to SOURCE, the compiler generates a file (XSOURCE) that
contains the original source with all macros expanded. If XSOURCE is set to NONE, no
such file is generated.
The ClearPath MCP library facility is a feature that can be used to structure processes.
A library is a program containing one or more functions that can be called by other
programs, which are referred to as “calling programs.” These functions are “entry
points” into the library. Unlike a regular program, which is always entered at the
beginning, a library can be entered at any entry point.
Libraries provide all the benefits of functions plus the added advantages that they can
be reused and they can be shared by a number of programs. Consolidating logically
related functions into a library can make programming easier and program structure
more visible. Standard packages of functions (such as plotting and statistics) need not
be copied into any calling programs.
Library Programs
A library program is a program that specifies functions as entry points for use by
calling programs. A function in a library is specified to be an entry point by being
“exported.” A library program becomes a library after it “freezes.”
Calling Programs
A calling program is a program that calls entry points provided by a library. In the
calling program, an entry point is an external function declared to belong to the library
in which the actual function resides.
A library can itself act as a calling program and call other libraries.
When a program exports entry points, the object file for that program contains a
library directory. A library directory contains a description of all the entry points in the
library. This description includes the following information:
Library Identification
A calling program identifies the library through one of the following:
Library Initiation
On the first call to an entry point of a library or at an explicit linkage request, the calling
program is suspended. The description of the entry point in the library template of the
calling program is compared to the description of the entry point with the same name
in the library directory associated with the referenced library.
If the entry point does not exist in the library or if the two entry point descriptions are
not compatible, a run-time error is given and the calling program is terminated. If the
entry point exists and the two entry point descriptions are compatible, the MCP
automatically initiates the library program (if it has not already been initiated). The
library program runs normally until it “freezes,” which makes the entry points
available. All of the entry points of the library that are declared in the calling program
are linked to the calling program and the calling program resumes execution.
If a calling program declares an entry point that does not exist in the library, no error is
generated when the library is initiated; however, a subsequent call on that entry point
causes a “MISSING ENTRY POINT” run-time error and the calling program is
terminated.
Linkage Provisions
In the library facility, entry points declared in a calling program are linked to
corresponding entry points provided by a library in one of three ways (C only provides
direct linkage):
• Directly
• Indirectly
• Dynamically
Direct linkage occurs when the library program contains the function that is exported.
Indirect linkage occurs when the library program exports a function that is declared as
an entry point of another library. The MCP then attempts to link the calling program to
this second library, which can provide the entry point directly, indirectly, or
dynamically.
Dynamic linkage allows a program to determine at link time which library task the
calling program will be linked to. The library program must provide a selection function
that accepts information provided by the linker and informs the MCP which library to
link to.
Sharing Specifications
Users of a library can be restricted through the normal file access features provided
by the system. The allowed simultaneous usage of a library can be specified by the
creator of the library at compile-time. The library sharing can be PRIVATE,
SHAREDBYALL, or SHAREDBYRUNUNIT.
SHAREDBYRUNUNIT A run unit consists of a program and all libraries that are
called, either directly or indirectly, by that program. A
“program” in this context excludes both a library that is not
frozen and any tasks that are initiated by the program.
Discontinuing Linkage
In some languages, a program can explicitly delink from a library program by canceling
the library or delinking from the library. The C compiler does not support explicit
delinking; instead, a C program implicitly delinks from a library program by terminating.
Duration Specifications
You can specify the duration of a library at compile-time by using the DURATION
compiler control option. A library’s duration can be set to one of the following options:
Refer to the System Commands Operations Reference Manual for more information
on the THAW system command.
Error Handling
Any fault caused (and ignored) by a function in a library that is invoked by a calling
program is treated as a fault in the calling program. If ignored by the calling program,
this fault causes the calling program to be terminated, but has no effect on the status
of the library.
If a library program faults (or is otherwise terminated) before freezing, then all calling
programs that are waiting to link to that library program are also terminated.
If a library is terminated while calling programs are linked to it, those programs are
also terminated.
The first call on an entry point in a library causes library linkage to be made. In this
phase, an attempt is made to locate and establish links to all entry points declared by
the calling program. If an entry point declared in the calling program does not exist in
the library, the linkage cannot be established and any subsequent calls to that entry
point result in a “MISSING ENTRY POINT” error.
Creating C Libraries
A library program is created by declaring, in the source file that declares main, at least
one procedure with the storage class asm. The duration of the library program is by
default “temporary” and can be changed with the DURATION compiler control option.
The sharing specification is by default “private” and can be changed with the compiler
control option SHARING. In the case of temporary or permanent libraries, the freeze is
done after main executes, but before any functions enrolled by the atexit function are
called. In the case of control libraries, main is the control function.
When the last user of the library delinks, the library thaws, if temporary, and resumes
running as a normal program. Any functions enrolled by the atexit function are called.
The program that links to a C library may itself be a C library. Or the program may
process internal procedures as separate processes. In either case, it is possible to
have two entry points executing simultaneously. If this occurs, undefined behavior can
result. The CONCURRENTEXECUTION compiler control option should be set if more
than one task executes within the program or library at the same time. When this
option is set, the system functions such as memory allocation are protected from
concurrent tasks. Refer to “CONCURRENTEXECUTION Option” in Section 10 for more
information.
The INTERFACENAME of the library may be optionally specified after the INTNAME.
The INTERFACENAME identifies a particular connection library in a connection library
program.
Entry points with linkage specifications are identified in the library template with their
names uppercased if the specified language is case-insensitive.
Caution
A POSIX library must not use functions in <stdio.h> to do I/O operations
while in an entry point. Use the POSIX I/O functions open, close, read, and
write (which are defined in <fcntl.h> and <unistd.h>) instead.
For more information regarding referencing POSIX libraries, see the C Programming
Reference Manual, Volume 2.
Hidden Parameters
C programs rely heavily on pointers for data manipulation and parameter passing.
While this may be considered a strength of the language, it is also a limitation when
interacting with programs written in other languages. A C pointer is implemented as
an index into C’s run-time data area called the heap; unlike an ALGOL pointer, a C
pointer cannot be dereferenced outside the scope of the C program that “owns” the
pointer.
To bypass these limitations and provide maximum flexibility when calling library entry
points, “hidden” parameters have been supplied. These parameters consist of both
variables and procedures that can be passed to a library entry point to allow the entry
point direct access to the C heap. The hidden parameters are declared in the function
prototype of the library entry point, but (because they are hidden) do not appear in the
actual entry point call. Of course, within the library entry point itself, corresponding
formal parameters must be declared.
The following describes the name and purpose of each hidden parameter, along with a
description of the corresponding ALGOL formal parameter (although the hidden
parameters might apply to other languages as well; see Tables 7-1 through 7-4 under
“Parameter Type Matching” in Section 7). The examples at the end of this appendix
illustrate how some of the hidden parameters can be used.
__copy_to_ptr_t
This parameter is a procedure that copies data from a character array to a C pointer.
The formal parameter is:
The procedure copies LEN bytes beginning at BUFF[OFF] to the C pointer PTR, which
should be a void pointer. This provides a convenient method for copying data into the
C program’s heap.
__copy_from_ptr_t
This parameter is a procedure that copies data from a C pointer into a character array.
The formal parameter is:
The procedure copies LEN bytes from the C pointer PTR into BUFF[OFF]. The C pointer
should be a void pointer. This provides a convenient method for copying data out of
the C program’s heap.
__errno_t
The formal parameter should be a by-reference integer. This hidden parameter passes
the C variable errno with external linkage to the entry point.
__file_t
The formal parameter should be a by-reference file. This parameter allows the user to
pass a file from a C program to an ALGOL entry point (files cannot be passed to Pascal
or FORTRAN). Unlike the other hidden parameters, an actual parameter is required,
which must be the _file_no field of a FILE struct. For example:
This example passes the file f to the procedure ALGOLPROC. This can be used for
obtaining file attribute information that is not directly available from C.
Notes:
• The FILE structure contains file state information not accessible outside the C
program; it is therefore potentially dangerous to perform I/O to a particular file
from both a C program and a library entry point.
• You cannot use the hidden parameter __file_t when compiling code for POSIX.
__free_t
Calling this function from the library entry point deallocates the space in the C
program’s heap pointed to by CPTR. The value 0 is returned.
__heap_t
The formal parameter should be a by-reference EBCDIC array. This hidden parameter
is the C run-time heap. The heap can only be passed from C programs compiled with
the TINY or SMALL memory model.
Note: Using this parameter is potentially dangerous since storing data directly into
the heap can lead to data corruption. Use it carefully.
__heap_to_ptr_t
This parameter is a procedure that converts a C pointer into an ALGOL pointer. The
formal parameter is:
CPTR is the C pointer and APTR is the ALGOL pointer. The C pointer should be a void
pointer. The procedure returns 0.
__install_memory_t
This parameter is a procedure that installs an array row into the heap. The
INSTALLMEMORY compiler control option must be enabled to use this parameter. The
formal parameter is:
__malloc_t
Calling this function from the library entry point allocates space in the C program’s
heap and returns a C pointer to the allocated space.
These hidden parameters are also available through the normal library interface.
Whenever a C program imports or exports library entry points, it also exports entry
points for MALLOC, FREE, HEAPTOPTR, COPYTOPTR, COPYFROMPTR, and INSTALLMEMORY. The
library can import these entry points by declaring them as being from a library with
linkage “byinitiator”. A circular library linkage is established between the C program
and the library. Importing the C procedures can reduce the parameter-passing
overhead of hidden parameters, as well as eliminate the hidden parameters from the
entry point prototypes.
Examples
C Program Calling ALGOL Library
Library Header File
/*File CTOA/H */
extern "ALGOL" {
void fill (int (&) [ ], char (&) [ ]);
int print (int*, int, char*, int (&) (int*, int, char*));
char* stationname (__file_t);
}
C Program
#include "ctoa.h" (bytitle="OBJECT/CTOA/A", intname="LIB")
#include <stdio.h>
main ( ) {
#define IA_SIZE 10
#define IC_SIZE 27
int ia [IA_SIZE], n;
char ca [IC_SIZE], *ps;
ALGOL Library
BEGIN
LIBRARY CLIB (LIBACCESS = BYINITIATOR);
FORMAL;
BEGIN
C Program
#include "ctop.h" (bytitle="OBJECT/CTOP/P", intname="LIB")
#include <stdio.h>
main ( ) {
char ca[ ] = "abcdefghijklmnopqrstuvwxyz";
char* up_ca;
struct s { double y; int x; } ss = { 3.14159, 25 };
Pascal Library
library p (output);
interface
type char_array = packed array [1..65535] of char;
type struct_s = record
y : real;
x : integer;
end;
function upcase (var ca : char_array;
sz : integer;
function malloc (i : integer) : integer;
procedure inc_x;
{ increments field ’x’ of record ss }
begin
ss.x := ss.x +1;
end;
begin
freeze;
end.
C Program
#include "ctof.h" (bytitle="OBJECT/CTOF/F", intname="LIB")
#include <stdio.h>
main ( ) {
double da [ ] = { 1.1, 2.2, 3.3, 4.4, 5.5 };
char s [ ] = "this is a string of 34 characters";
int n;
FORTRAN77 Library
BLOCK GLOBALS
EXPORT (SCALE, STRLEN)
END
PROGRAM MAIN
CALL FREEZE (’TEMPORARY’)
END
I = I + 1
GOTO 10
20 STRLEN = I
END
/* File CTOCB/C85/H */
extern "COBOL" void cobolproc (int &, double &);
C Program
#include "ctocb.c74.h" (bytitle="OBJECT/CTOCB/C74", intname="LIB")
#include "ctocb.c85.h" (bytitle="OBJECT/CTOCB/C85", intname="LIB2")
#include <stdio.h>
main ( ) {
double d = 3.141;
int i = 72;
/* add i to d */
proceduredivision (i, d);
printf ("i=%i d=%f\n", i, d);
/* add i to d */
cobolproc (i, d);
printf ("i=%i d=%f\n", i, d);
}
COBOL74 Library
IDENTIFICATION DIVISION.
ENVIRONMENT DIVISION.
DATA DIVISION.
WORKING-STORAGE SECTION.
77 II BINARY PIC 9(11) RECEIVED BY REFERENCE.
77 XX REAL RECEIVED BY REFERENCE.
PROCEDURE DIVISION USING II, XX.
P1.
ADD II TO XX.
EXIT PROGRAM.
COBOL85 Library
IDENTIFICATION DIVISION.
PROGRAM-ID. MSGLIB IS LIBRARY PROGRAM.
ENVIRONMENT DIVISION.
DATA DIVISION.
PROGRAM-LIBRARY SECTION.
LB MSGLIB EXPORT
ATTRIBUTE SHARING IS PRIVATE.
ENTRY PROCEDURE COBOLPROC.
PROCEDURE DIVISION.
P1.
CALL SYSTEM FREEZE TEMPORARY.
STOP RUN.
IDENTIFICATION DIVISION.
PROGRAM-ID. COBOLPROC.
ENVIRONMENT DIVISION.
DATA DIVISION.
WORKING-STORAGE SECTION.
77 II BINARY PIC 9(11) RECEIVED BY REFERENCE.
77 XX REAL RECEIVED BY REFERENCE.
PROCEDURE DIVISION USING II, XX.
P1.
ADD II TO XX.
EXIT PROGRAM.
END PROGRAM COBOLPROC.
BEGIN
POINTER APTR;
INTEGER CPTR;
% allocate room in C heap for string
CPTR := MALLOC (LENGTH (S) + 1);
HEAPTOPTR (CPTR, APTR);
% move string into heap
REPLACE APTR BY S, 48"00";
% write the string
WRITELINE (CPTR);
% deallocate the string
FREE (CPTR);
END XFER;
C Library
#include <stdio.h>
#include <stdlib.h>
main ( ) {
atexit (cleanup);
}
The ANSI C Standard specifies certain internal translation limits that a conforming
C compiler must meet. In every case, the ClearPath MCP implementation exceeds the
stated limits. In some cases, the actual limit varies depending on the amount of stack
space allocated to the compiler when it is invoked. Also, the use of one C construct
may have an effect on the limits for other C constructs, since they may share certain
data structures within the compiler. Table B-1 provides the translation limits given by
the ANSI C Standard beside the corresponding limits for this implementation.
This appendix contains information you can use to port a C application (written for
another computing environment) onto a ClearPath MCP system. It describes how to
get the source onto the system and compile it. It also describes any differences that
can be expected when running the application on the ClearPath MCP system.
Source Files
Format
Source files on the enterprise server are stored as zero or more fixed-length records.
The default character set is EBCDIC, but ASCII is also supported. The internal and
external character coding of files is controlled by using the file attributes INTMODE
and EXTMODE respectively. (See the File Attributes Programming Reference Manual
for information on INTMODE and EXTMODE file attributes.)
Uploaded files are generally translated to EBCDIC for use and then translated back to
ASCII when downloaded back into the original environment. The C Compiler, CANDE,
EDITOR, and SYSTEM/PATCH utilities use the EBCDIC character set. However, these
softwares can access files that have their physical format set to ASCII (EXTMODE=
ASCII) and their logical format set to EBCDIC (INTMODE=EBCDIC) by allowing the
system to translate the file between the internal and external character encoding.
Each record contains program text in columns 1 through 72, padded with trailing blanks
as necessary. The newline character (commonly found in other environments) is not
stored because it is implied by the end of the fixed length record. Source lines from
other environments that extend beyond 72 characters must be imported so that a
trailing backslash (\) is placed in column 72 to indicated that the line is continued at
column 1 of the next source record.
A sequence number is stored in columns 73 through 80 and is used to identify the line
in cross-reference information, patching control, and error reports. Unlike other
systems, this sequence number is associated with a particular source record and is
not a relative line number within the file. Adding new lines within the source by using
standard enterprise server tools does not automatically change the sequence
numbers of subsequent records.
The last 10 characters, columns 81 through 90, are used to store the version
information that is shown on compiler listings. This practice allows the history of
changes to the source to be shown; it may be left blank.
Source lines for C in other systems may be longer than 72 characters. To handle these
lines, the following convention is used by the C compiler. The same convention is also
used for text stream files; however, the length of the data field in the record depends
on the text stream FILEKIND attribute.
• Lines longer than 72 characters are folded at 71 characters and a trailing backslash
(\) is appended. The remainder of the line starts at column 1 on the next record.
This is repeated as many times as necessary.
• If a line is supposed to end in a backslash (not a valid C source line, but can be
done in text streams), two backslashes are used instead. The next line should be
all blanks. When read, the last backslash causes the next line to be read, but since
it is all blanks, it is ignored. The next-to-last backslash remains.
C source lines that end in a backslash are not valid in the sense that the C
preprocessor removes such lines before the C compiler reads them. However,
from a C source file and C programmer perspective, C macros can and do have
lines in them that end in a backslash that indicates the macro continues on the
next line.
In both C source and in text streams, trailing blanks on a line are ignored. Also, the last
line in a file is always assumed to have a newline character at the end, regardless of
whether one was written.
File titles used inside a C program can also have a hostname that identifies which
system the file resides on. The hostname syntax in a file title is
For example, assume a C program with the declaration main(int argc, char *argv[])
is run as follows:
argv[0] = "filename"
argv[1] = "name1"
argv[2] = "(usercode)filename on packname at hostname"
argv[3] = "name2"
Most enterprise server softwares, including the C compiler and C programs, capitalize
letters in titles found outside of quoted strings. A directory (node) does not have to be
created before a file is stored under it. A directory is automatically removed when the
last file under it is removed. A directory and a file can have the same name. There is
no “current directory”; the complete file title has to be specified every time. Refer to
Section 10, “TITLESYNTAX Option,” for more information on the file title changes that
occur during compilation.
FILEKIND
Many other systems use a convention that stores the kind of the file as a period suffix
onto the last node of the file title. For example, “example.c” could be a C source file,
where “example.h” would be the corresponding header file and “example.o” would be
the corresponding object file. While it is possible to use this naming convention on the
enterprise server, it is also necessary to specify the FILEKIND attribute, indicating the
type of contents of the file. In the preceding example, “example.c” and “example.h”
would be FILEKIND=CCSYMBOL and “example.o” would be FILEKIND=CCCODE.
In general, the C compiler changes a period (.) or backslash (\) to a slash (/) when it
finds them in a file, except when that produces an illegal enterprise server file title, in
which case it is dropped. The C preprocessor makes the same changes to the titles of
files being included by using the #include directive or to file titles listed as arguments
to the fopen(), frename(), rename(), and remove() functions. Refer to Section 10,
“TITLESYNTAX Option,” for more information on the file title changes that occur
during compilation.
Data Communications
There are several ways to transfer files to the enterprise server:
Any program that drives a data communications line to must conform to ClearPath
MCP timing rules. Generally characters within a line can be sent at full line speed.
However, it may be necessary to impose a small delay between the first character and
the second character.
End-of-line is indicated by sending up the carriage return character (ASCII value '\x0D').
After sending the carriage return character, a delay of at least 1/2 second should be
imposed before the first character of the next line is sent.
The following C program sends a prompt of “]]]START” down the line, then reads from
the data communications line until “]]]END” is received. The file UPLOAD is created and
each line is stored in it with a sequence number and a blank mark field.
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
main() {
FILE * upload;
char buf[4000];
upload = fopen("UPLOAD", "w, FILEKIND=CCSYMBOL");
if (upload == NULL) {
perror ("Cannot create UPLOAD");
exit (EXIT_FAILURE);
}
puts("]]]START");
while (fgets(buf, 4000, stdin) !=NULL) {
if (strcmp(buf, "]]]END\n") == 0) break;
fputs(buf, upload);
}
fclose(upload);
}
1. Pointer alignment—Many programs assume that all pointers can be treated in the
same manner. You can detect these problems at run-time by setting the
$BOUNDS(ALIGNMENT) compiler control option.
2. Signed magnitude representation—Encryption (and other) algorithms might
assume that integers are stored in a particular format.
3. Unsigned types—Since the enterprise server stores the sign bit separately from
the data, different behavior can occur when casting between signed and unsigned
types.
When you are porting an application for the first time, it is strongly recommended that
you set the BOUNDS(ALIGNMENT) compiler control option. When the application is
fully tested, the option can be reset to remove the performance penalty associated
with its use.
For more information on portation issues, see “Language Differences” later in this
section.
make test/c cc
#WORKFILE TEST/C: CC
100#include <stdio.h>
200main() {
300 printf("Hello world\n");
400}
save
#UPDATING
#WORKSOURCE TEST/C SAVED
compile test/c
#COMPILING 1234
#ET=1.7 PT=0.0 IO=0.5
run test/c
#RUNNING 1235
Hello world
#ET=0.2 PT=0.0 IO=0.1
Compiling
Traditionally, a ClearPath MCP program is developed as a single file. Compilation of
100,000 to over 700,000 lines is routine. As a result, the tools available for program
development are oriented towards handling a single large file.
Systems created in C tend to be written as many small files. The MAKE Utility, CC
tool, and LD tool (see the discussion of the MAKE Utility, CC tool, and LD tool later in
this section) can be used for C file compile- and run-time dependency control,
compilation, and binding, respectively. However, tools for managing many small files
do not currently exist.
INITIALCCI
One of the tools of the C compiler is the INITIALCCI (Initial Compiler Control Images)
file. The file contains compile-time options to be used for all compiles by the user. The
following is an example INITIALCCI file; refer to Section 9 for the meaning of the
various options.
search = ’$-/=;’
search += ’UNIX/=;’
BATCH: reset list set lineinfo
longlimit = 18000
The definition of the function main determines how the C program is invoked. If main
has no arguments, run the program OBJECT/FOO/C from CANDE by entering the
following:
r foo/c
Then, run the program OBJECT/FOO/C from WFL by entering the following:
RUN OBJECT/FOO/C;
If main is declared with the argc, argv arguments, run the program from CANDE by
entering the following:
or
The parameter string is parsed into separate argv strings, each separated by one or
more blanks. However, if two or more argv strings look like an ClearPath MCP file title
they are combined. For example, the following parameter string is parsed as two argv
strings, "FRANK ON PACK AT HOST" and "HARRY AT FRANKS":
Binding
Binding (synonymous with linking in UNIX, B20, and PC environments) is required if the
program consists of multiple separately compiled source files or if standard library
functions are used without including the corresponding header files by using the
#include <. . .> syntax. See the C Programming Reference Manual, Volume 2:
Headers and Functions for more information about binding requirements.
Refer to Section 9 of this manual for a description of how to bind C object files.
Language Differences
The ClearPath MCP C compiler is based on the ANSI C Standard; it therefore differs in
many ways from early compilers based on The C Programming Language by Brian W.
Kernighan and Dennis M. Ritchie or the Portable C Compiler (PCC) program. This
appendix identifies the major characteristics of the ClearPath MCP C compiler that are
different from other C compilers.
Identifiers
Identifiers can be up to 250 characters long. External linkage is significant up to the full
identifier length instead of the first 6 or 8 characters. Internal linkage is significant up
to the full identifier length instead of only the first 31 characters as required by the
ANSI C Standard.
Lowercase and uppercase letters are preserved and are significant. Dollar signs are
not allowed in identifiers.
Types
The following types are discussed:
• Char types
• Integer types
• Floating types
• Pointer types
• Common type portation problems
Char Types
Characters are 8 bits wide. The plain char type is unsigned by default. This default can
be changed to be signed by the $PORT (SIGNEDCHAR) option. This affects all variables
of type char, even in arrays and structures.
Signed characters are stored in two’s-complement format. The values 0 through 127
have the same bit pattern for signed and unsigned types. Unsigned characters are
stored in two’s complement format if the $PORT (CHAR2) option is enabled.
Variables of type char that are declared as extern in a module are used in that module
based on the PORT suboption of that module. Therefore, the use of char objects that
are declared extern could produce undesirable results if the PORT suboptions
SIGNEDCHAR, UNSIGNED, and CHAR2 differ between the modules in a bound program
where the char object is declared and where it is used.
The default character set used at run time is EBCDIC. This can be changed by the $
SET STRINGS=ASCII option. When ASCII is set, all characters are stored using the
ASCII character set and all I/O is translated to or from ASCII if necessary.
Six characters are stored for each word instead of the usual four or two. It is not valid
to compare multiple characters at once by casting a character pointer into an integer
pointer and doing integer comparisons. This comparison results in a run-time error if
the BOUNDS(ALIGNMENT) compiler control option is set; otherwise undefined
behavior is likely to occur.
Integer Types
Integer type representation differs between ClearPath MCP C and C language on most
other machines. ClearPath MCP C uses a signed-magnitude representation for integers
instead of two’s-complement representation. Furthermore, ClearPath MCP C integers
use only 40 of the 48 bits in the word: a separate sign bit and the low order 39 bits for
the absolute value.
Unsigned types in ClearPath MCP C use the same representation as signed types,
except that the sign bit is always zero. Negative values, when casted to an unsigned
type, are added to (INT_MAX+1), producing a value within the signed integer range. This
value does not change when cast back to a signed type.
The types short, int, and long are all the same size.
Bit operations (bitwise AND, OR, exclusive OR, and NOT) on signed values affect only
the 40 bits used by integers. Bit operations on unsigned values conform to the
mathematical definitions given in the ANSI C standard. Because the sign bit is not
adjacent to the other bits, it is not possible to shift into or out of the sign bit.
Operations on unsigned integer types are more expensive than on signed types. The
$RESET PORT (UNSIGNED) option makes unsigned equivalent to signed types and
should be used on programs that do not depend upon the wraparound or bit operation
properties of unsigned types.
By default, bit fields in structures or unions that are of type plain int are unsigned. The
default can be changed to signed by the $PORT (SIGNEDFIELD) option.
Floating Types
By default, double type is the same size and range as float type. Note that the
ClearPath MCP float type has about 11 digits of precision. The default can be changed
to be the same size and range of long double type by the $RESET DBLTOSNGL option
(Double to Single).
Pointer Types
Pointers are internally stored as integer values. A pointer to a char is the number of
bytes from the start of addressable memory (the C heap), not the machine memory. A
pointer to an int or a float is the number of words, and a pointer to a long double is
the number of double words, from the start of addressable memory. Implicit and
explicit casts between pointers of different types adjust the value. Casts that are
invisible to the compiler must be avoided, such as an invisible cast declaring a
prototype to an external procedure as taking a char * parameter, but defining the
procedure in another compilation unit as taking an int * parameter.
See “Pointer Alignment” in this section for the implication of implicit and explicit casts
between pointers of differing types.
Any pointer that is itself pointed at or any pointer stored in an array, structure, or
union is always stored as if a void cast were done. These pointers may be cast safely,
either visibly or invisibly.
Pointer arguments to old-style functions are always passed as if a void * cast were
done.
The allocation of objects is not necessarily consecutive. Bumping a pointer beyond the
end of an object does not cause the pointer to point to the next object declared. This
is especially true for function arguments.
Problems with implicit and explicit casts between pointers of different types can
possibly be avoided through use of the $BYTEADDRESS compiler control option.
The comparison of negative numbers with unsigned types may behave differently on
ClearPath MCP systems than on other platforms. Platforms that store arithmetic
values in one’s or two’s complement form store the sign when assigning to an
unsigned type. On ClearPath MCP systems, the sign is not stored when assigning to
an unsigned type. On ClearPath MCP systems, comparing a negative value with the
value in an unsigned type will never be true unless the CHAR2 or UNSIGNED
subordinate options of the PORT compiler control option are used to emulate two’s
complement arithmetic on unsigned types. Another workaround is to change negative
literals to their one’s complement values (for example, -1 becomes 0xFF).
The representation of scalar types differs between ClearPath MCP systems and other
platforms. On ClearPath MCP systems, integer types are 6-bytes in length and start on
word boundaries. Any calculations that assume the size of an integer type to be
anything other than 6 bytes will result in problems when portation occurs.
Examples
The following examples illustrate these type of size assumptions:
Using the sizeof operator in combination with numeric literals to calculate the number
of bytes in an item of scalar type can cause problems. In the following program
fragment, the intent is to calculate the number of long elements occupied by
SomeObject:
The addition of the numeric literal 3 to the size of the type of SomeObject assumes that
sizeof(long) returns 4. In ClearPath MCP C, sizeof(long) returns 6, causing the
calculation to return unexpected results. The following code fragment illustrates how
you can avoid this type of portation problem:
Problems can also occur when pointers are incremented to access arrays or members
of structures if assumptions are made about the alignment and packing of the
individual elements. The following program fragment uses a pointer to access a
member of a structure:
Using InfoPtr[2] to access SeqNum assumes that bytes 0 and 1 contain the structure
member Type and that byte 2 contains the structure member SeqNum. On ClearPath
MCP systems, Type occupies bytes 0 to 5, and SeqNum occupies byte 6, which means
that InfoPtr[2] accesses the wrong data.
Pointer Alignment
the client-end and the server-end. The differences between the two’s complement
and signed-magnitude representation may result in different values when fragments
of data are extracted, encrypted, and reinserted into the data.
To obtain matching results, you can define macros that return arithmetic results in
two’s complement form. The following example illustrates macros for two’s
complement addition and subtraction:
Date/Time Representation
The internal representation of the date and time differs on different platforms. On
UNIX systems, the internal representation of date/time is the number of seconds
elapsed since the epoch date of Thursday, January 1, 1970 at 00:00:00. The MS-DOS
representation is a 16-bit value for both date and time with an epoch date of Tuesday,
January 1, 1980 at 00:00:00. On ClearPath MCP systems, the actual date and time is
returned in a structure. When performing timestamp matching between client and
server, algorithms are required to convert date/time to a common format.
Type Matching
The ClearPath MCP C compiler and Binder require that the number of arguments be
correct. The prototype syntax ",..." must be used for varying numbers of arguments.
Within a source file, the types of the arguments must also agree. Across source files,
the types can disagree, except that long double types must match.
Object Sizes
By default, the TINY memory model is used. The default can be changed by the $ SET
MEMORY_MODEL = SMALL, = LARGE, or = HUGE options. The smallest model within
which the data fits should be chosen. Refer to Section 10, “Compiler Control Options,”
for more details on memory models.
Library Procedures
The ClearPath MCP C compiler provides only the library functions specified in the ANSI
C Standard. Other libraries, like “curses” and “shared memory”, are not currently
provided.
Headers
Whenever a standard library function is used, its header should be included. The
compiler produces faster code and does not require a bind step for the function.
When including a nonstandard header file, the $ SET SEARCH= option can be used to
control where to search for the file. The search path can be made relative to the
directory of the source file. A search for included files inside an include file is always
based on the original source file.
Although each errno location starts at zero, the location is not reset to zero when a
client delinks from a library or when another client links with the same stack number.
In order to avoid this issue, the C library should explicitly set errno to zero before
calling a function that sets errno.
• Text streams
• Binary streams
• LTITLE attribute
Text Streams
If the $ SET ANSI option is used, the horizontal tab feature is preserved; otherwise, it
is replaced by spaces up to the next column that is a multiple of 8. All other control
characters are stored without translation.
By default, files created with text streams can hold about 1 million lines. The default
can be changed by setting the AREASIZE attribute on the fopen function. The
AREASIZE value (default is 1,008) multiplied by 1,000 is the number of lines allowed.
The maximum value for AREASIZE is 1,048,575, allowing over 1,000 million lines.
Files created using text streams are compatible with most other ClearPath MCP tools
such as CANDE and the Editor. For example, a C program can be written to disk using
a text stream and then turned into a CCSYMBOL file simply by using the CANDE TYPE
command. (Setting the FILEKIND attribute to CCSYMBOL on the fopen function has the
same effect.)
Binary Streams
By default, binary streams are stored as 90 byte records, with automatic wraparound
as necessary. The default file size is 90 million bytes. Note that this easily fits within
2**39-1, the maximum integer, allowing ftell and fseek to be used.
The maximum size of a file is over 400,000,000 million bytes and is achieved by
setting AREASIZE to its maximum of 1,048,575 and MAXRECSIZE and BLOCKSIZE to
their maximum of 65,535. This is larger than the maximum integer and the fgetpos and
fsetpos functions must be used instead of ftell and fseek.
LTITLE Attribute
The C compiler uses the LTITLE attribute instead of the TITLE attribute. The LTITLE
attribute allows larger limits on the length of a node and on the number of nodes in
the file title if the system option SYSOPS LONGFILENAMES is set.
Refer to Section 10, “TITLESYNTAX Option,” for more information about the LTITLE
attribute.
• Input
• Output
Input
The ClearPath MCP system does not support unbuffered data communications where
each keystroke is sent immediately to the system. Full duplex and half duplex are
supported, but the characters are collected in the data communications processor
(DCP) and are sent to the system only when the Return key is pressed. Input is limited
to MAXINPUT characters, a value defined for each station. A line of input can be
continued by terminating the input with a backslash (\). Another line is read and
appended to the previous line.
The DCP translates a horizontal tab into enough blanks to position the cursor at the
next tab stop. Linefeed characters are ignored and the backspace character causes
the previous character to be deleted. The delete character causes the input to be
discarded. Other characters are not changed.
Output
Output is automatically sent when the output limit is reached or a new line is
displayed. Unbuffered output is not supported, but a partial line can be displayed by
flushing the output file: The next character written appears immediately after the last
character displayed, with no new line. (On the TD/MT/ET style of terminals,
unexpected behavior may result.)
Any line longer than the declared terminal width, usually 80, is folded at the width. The
backslash (\) character does not appear. A horizontal tab is translated by the data
communications hardware into enough blanks to position the cursor at the next tab
stop. Other characters are sent without editing.
Extensions
The ClearPath MCP C compiler supports many extensions that can make porting
easier.
Preprocessor
The source program with all macros expanded and nonsystem include files inserted,
can be saved by using the $ SET XSOURCE=SOURCE option. The resulting file is an
equivalent C program that can be compiled instead of the original source. It is useful in
determining exactly how macros are expanded.
Memory Layout
The layout of structures, arrays, and variables can be displayed by using the $ SET
MAP option.
Statistics
The number of times each function is called, as well as the time spent in the function,
can be printed after each run by compiling with the $ SET STATISTICS option. Time is
calculated from each function entry to function exit, inclusive and exclusive of time
spent in any other function called.
The frequency count of each line executed can be shown by the $ SET
STATISTICS(BLOCK) option. The reported time values are in seconds of processor
time.
Enhancing Performance
The standard library functions should be used whenever possible. They have been
hand-coded to take full advantage of the ClearPath MCP instruction set. The header
files should be included using the #include <...> syntax whenever possible; it allows
the code to be inserted inline, possibly avoiding the Binder step.
The most efficient compiler control values are given in the following list. They should
be used whenever possible. Each default is given in parentheses afterwards.
Array indexing should be done instead of pointer dereference whenever possible (as
is true for any optimizing compiler). Very small functions that are called frequently
from the same source file should be defined with the inline storage class specifier.
MAKE Utility
In most computing environments that support the C language, it is typical for a C
application to be developed as numerous small interdependent modules. As the size
and complexity of the project increases, so does the difficulty in keeping the various
files up-to-date. The MAKE utility improves the maintenance of such a project by
providing a method for creating and updating the necessary files with a minimum of
effort.
The ClearPath MCP MAKE utility provides a subset of the MAKE features familiar to
most C programmers. The MAKE utility does the following:
• Determines if a source file has changed since its last compilation and, if so,
recompiles it.
• Determines if a program must be bound to produce a current version and, if so,
invokes the Binder.
• Enables the user to invoke Work Flow Language (WFL) commands conditionally.
• Provides macro substitution.
The macro definitions follow the flags. A macro definition takes the same form as that
in the makefile:
name=value
The definition of a macro on the command line overrides the definition of the macro in
the makefile. Note that on the command line, a macro definition that has embedded
blanks must be enclosed within quotation marks.
The targets to be made follow the macro definitions and are processed in left-to-right
order. If no targets are supplied, then the first target that appears in the makefile is
made.
OBJECTS=prog.o init.o
CFLAGS= -s ’reset list’ -d abc=3
appl: $(OBJECTS)
ld -o appl.o $(OBJECTS)
prog.o: prog.c
cc $(CFLAGS) prog.c
save:
WFL COPY OBJECT/APPL/C TO MYPACK (PACK);
or
This invokes the MAKE command, which processes the makefile APPL/MAKE with the
silent mode enabled. The definition for CFLAGS in the command line overrides the
definition of CFLAGS in the makefile. A MAKE command of appl is processed first.
Assuming that all target files are out-of-date, the file init.c is compiled first by virtue
of the default rule. The file prog.c is compiled next, using the CC command that
follows the prog.o target line. The LD tool is then invoked to bind the objects. The
MAKE command of save is processed next, which causes the WFL COPY command to
be invoked.
Makefile
The makefile is a text file containing target lines, command sequences, and macro
definitions.
Makefile Rules
The following rules apply:
• A logical line may consist of several physical lines by terminating all but the last
physical line with a backslash (\).
name.suffix
Typically, a suffix of c indicates a C source file and a suffix of o indicates an object file.
Such file names are converted by MAKE to an equivalent ClearPath MCP file name,
using the following rules:
For clarity and compatibility with other C environments, the remaining discussion of
the MAKE utility in this section contains file names in the alternative format.
File names that are prefixed with a dollar sign ($) are not translated since a single
dollar sign in MAKE signifies a macro.
Note: When using the MAKE utility, prefix your file name with two dollar signs ($$)
to indicate an actual dollar sign.
Refer to Section 10, “TITLESYNTAX Option,” for more information on the file title
changes that occur during compilation.
Makefile Directories
Unlike other C environments, ClearPath MCP systems do not support the concept of a
“current” directory. Such a concept becomes extremely useful when dealing with
projects that are comprised of numerous files. To work around this, a makefile may
contain a DIR directive.
.DIR: directory-name
.DIR: MCP/37/=
prog.c MCP/37/PROG/C
prog.o OBJECT/MCP/37/PROG/C
prog.c MY/TEXT/PROG/C
prog.o OBJECT/MY/TEST/PROG/C
Target Line
File interdependencies are indicated on target lines. A target line contains a list of
target files optionally followed by a list of source files on which the targets are
dependent. The initial target name must begin in column 1. The syntax for a target line
is as follows:
The brackets indicate optional items. If a MAKE has been specified for a target that is
older than any of the target’s sources, then a “match” for that target line occurs.
This line indicates that prog.o is dependent on both prog.c and stuff.h. A change to
either prog.c or stuff.h causes prog.o to become out-of-date; a MAKE of prog.o
therefore results in a match for this target line.
The process whereby MAKE matches targets in the makefile is recursive: Each source
file can also be a target that is dependent on other sources. When a MAKE is
For example, given the following target lines and a request to MAKE the target appl:
If appl is older than prog.o, then line 1 matches. If in turn prog.o is older than either
prog.c or stuff.h, then line 2 matches. Similarly, if appl is older than init.o, then line 1
matches and if init.o is older than either init.c or stuff.h, then line 3 matches.
Once a match occurs, the command sequence following the target line is executed.
Commands are executed in the reverse order in which the matches occur. Using the
prior example, the command sequence for init.o is executed first, followed by the
command sequence for prog.o, and finally the command sequence for appl.
Command Sequence
A command sequence consists of one or more command lines following a target line.
A command line must begin with one or more blanks to distinguish it from a target line
and contain a command to be invoked when the corresponding target line matches.
Acceptable commands
The MAKE utility accepts the following commands:
• A WFL command, which is passed to the WFL compiler for execution. A WFL
command is preceded by the keyword WFL, for example:
WFL COPY OBJECT/APPL/C TO MYTAPE
A file name in a WFL command must appear in the ClearPath MCP format, with its
complete directory.
• A CC command, which is processed by the CC tool. The CC tool invokes the C
compiler in a manner similar to that used by other C environments.
• An LD command, which is processed by the LD tool. The LD tool invokes the
Binder to bind object files into an executable code file in a manner similar to that
used by other C environments.
• The hyphen (-). This option signifies that any error found while executing the
command is ignored.
• The "at" sign (@). This option signifies that the command is not written before it is
executed.
• The plus sign (+). This option signifies that the command is executed even if the -
n option is specified.
Example
The following is a sample makefile with appropriate command sequences:
Macro Substitution
The MAKE utility supports a simple macro substitution mechanism for both target
lines and command lines. A macro name is any string of characters. A macro can be
defined either in the makefile or on the command line when MAKE is invoked. In the
makefile, a macro definition takes the form:
name=value
The macro name is in column 1. A macro that is not defined explicitly has the null
string as its value.
CFLAGS= -v
3=abc.c
X=prog.o init.o
Macros are invoked in the makefile by preceding the macro name with a dollar sign ($).
To specify a leading dollar sign, use two dollar signs ($$). The name must be
parenthesized if it is longer than one character.
$(CFLAGS)
$3
$(X)
$$3
Example
The following is a sample makefile with some macro definitions:
CFLAGS= -v
OBJECTS=prog.o init.o
P=appl
$P: $(OBJECTS)
ld -o $P $(OBJECTS) # binds OBJECTS to produce P
prog.o: prog.c stuff.h
cc $(CFLAGS) prog.c # compiles prog.c into prog.o
init.o: init.c stuff.h
cc $(CFLAGS) init.c # compiles init.c into init.o
Predefined Macros
The MAKE utility includes four predefined macros. They are:
CC Tool
The CC tool can be used in a makefile to invoke the ClearPath MCP C compiler. CC
enables you to specify compiler control options, C preprocessor directives, and the
names of source files to be compiled. The CC tool provides a convenient alternative to
the WFL COMPILE command.
The CC command line takes zero or more flags, followed by the names of one or more
source files to be compiled. The flags may occur in any order in either uppercase or
lowercase characters. The syntax for CC is as follows:
Note that the CC tool does not generate an object file named a.out if only one source
file is specified. This is contrary to the behavior of CC in other C programming
environments.
Refer to Section 10, “TITLESYNTAX Option,” for information on the file title changes
that occur during compilation.
LD Tool
The LD tool can be used in a makefile to invoke the ClearPath MCP Binder. LD enables
you to specify Binder options and the names of the object files to be bound all on the
same command line, providing a convenient alternative to the WFL BIND command.
The LD command line takes zero or more flags, followed by the names of one or more
object files to be bound. The flags may occur in any order in either uppercase or
lowercase characters. The syntax for LD is as follows:
If the -o flag does not appear, the bound code file has the title OBJECT/A/OUT.
Refer to Section 10, “TITLESYNTAX Option,” for information on the file title changes
that occur during compilation.
Default Rule
The MAKE utility invokes a default rule when a command sequence is not explicitly
provided for a file. The default rule is that a target of the form x.o has a source of the
form x.c and is created with the following command:
Thus, a makefile can consist only of the following without any target lines for prog.o
or init.o.:
If the target line matches during a MAKE, then MAKE examines prog.o and init.o to
determine if either is older than its respective source file and recompile them if
necessary.
Mnemonic Targets
A mnemonic target is a target that is not followed by any sources. It is not the name
of an actual file, but is used instead as a convenient way of invoking a specific
command sequence. If a target line matches, but does not contain any sources, then
the command sequence following the target line is executed. For example, given the
following makefile:
Then, issuing a MAKE command for the target save copies the file OBJECT/APPL/C to a
tape.
This appendix contains items that the American National Standard Institute (ANSI) C
allows each implementation of C to define. Each ANSI C item is followed by the
ClearPath MCP C implementation description.
Translation
ANSI C Standard
How a diagnostic is identified
Environment
ANSI C Standard
The semantics of the arguments to main
ANSI C Standard
What constitutes an interactive device
Identifiers
ANSI C Standard
The number of significant initial characters (beyond 31) in an identifier without external
linkage
ANSI C Standard
The number of significant initial characters (beyond six) in an identifier with external
linkage
ANSI C Standard
Whether case distinctions are significant in an identifier with external linkage
Characters
ANSI C Standard
The members of the source and execution sets, except as explicitly specified in the
standard
ANSI C Standard
The shift states used for the encoding of multibyte characters
ANSI C Standard
The number of bits in a character in the execution character set
ANSI C Standard
The mapping of members of the source character set (in character constants and
string literals) to members of the execution character set
ANSI C Standard
The value of an integer character constant that contains a character or escape
sequence not represented in the basic execution character set or the extended
character set for a wide character constant
ANSI C Standard
The value of an integer character constant that contains more than one character or a
wide character constant that contains more than one multibyte character
ANSI C Standard
The current locale used to convert multibyte characters into corresponding wide
characters (codes) for a wide character constant
ANSI C Standard
Whether a “plain” char has the same range of values as signed char or unsigned char
Integers
ANSI C Standard
The representations and sets of values of the various types of integers
ANSI C Standard
The result of converting an integer to a shorter signed integer or the result of
converting an unsigned integer to a signed integer of equal length, if the value cannot
be represented
ANSI C Standard
The results of bitwise operations on signed integers
ANSI C Standard
The sign of the remainder on integer division
ANSI C Standard
The result of a right shift of a negative-valued signed integral type
Floating Point
ANSI C Standard
The representations and sets of values of the various types of floating-point numbers
ANSI C Standard
The direction of truncation when an integral number is converted to a floating-point
number that cannot exactly represent the original value
ANSI C Standard
The direction of truncation or rounding when a floating-point number is converted to a
narrower floating-point number
ANSI C Standard
The result of casting a pointer to an integer or vice versa
ANSI C Standard
The type of integer required to hold the difference between two pointers to elements
of the same array, ptrdiff_t
Registers
ANSI C Standard
The extent to which objects can actually be placed in registers by use of the register
storage class specifier
ANSI C Standard
The padding and alignment of members of structures
ANSI C Standard
Whether a “plain” int bit-field is treated as a signed int bit-field or as an unsigned int
bit-field
ANSI C Standard
The order of allocation of bit-fields within a unit
ANSI C Standard
Whether a bit-field can straddle a storage-unit boundary
ANSI C Standard
The integer type chosen to represent the values of an enumeration type
Qualifiers
ANSI C Standard
What constitutes an access to an object that has volatile-qualified type
Declarators
ANSI C Standard
The maximum number of declarators that may modify an arithmetic, structure, or
union type
Statements
ANSI C Standard
The maximum number of case values in a switch statement
Preprocessing Directives
ANSI C Standard
Whether the value of a single-character character constant in a constant expression
that controls conditional inclusion matches the value of the same character constant in
the execution character set. Whether such a character constant may have a negative
value
ANSI C Standard
The method for locating includable source files
ANSI C Standard
The support of quoted names for includable source files
ANSI C Standard
The mapping of source file character sequences
ANSI C Standard
The behavior on each recognized #pragma directive
ANSI C Standard
The definitions for__DATE__and__TIME__ when respectively, the date and time of the
translation are not available
Library Functions
ANSI C Standard
The null pointer constant to which the macro NULL expands
ANSI C Standard
The diagnostic printed by and the termination behavior of the assert function
The x and y are the values of the preprocessing macros __FILE__ and __LINE__.
ANSI C Standard
The sets of characters tested for by the isalnum, isalpha, iscntrl, islower, isprint,
and isupper functions
NUL, SOH, STX, ETX, HT, DEL, VT, FF, CR, SO, SI, DLE, DC1, DC2, DC3, NL (EBCDIC
only), BS, CAN, EM, FS, GS, RS, US, LF, ETB, ESC, ENQ, ACK, BEL, SYN, EOT, DC4,
NAK, and SUB
The following is the set of characters tested for by the isprint function:
blank ; #
[ ^ @
. - ’
< / =
( | "
+ , ~
! % {
& _ }
] > \
$ ? letters
* ` decimal digits
) :
ANSI C Standard
The values returned by the mathematics functions on domain error
ANSI C Standard
Whether mathematics functions set the integer expression errno to the value of the
macro ERANGE on underflow range errors
ANSI C Standard
Whether a domain error occurs or zero is returned when the fmod function has a
second argument of zero
ANSI C Standard
The set of signals for the signal function
ANSI C Standard
The semantics for each signal recognized by the signal function
ANSI C Standard
The default handling and the handling at program startup for each signal recognized
by the signal function
ANSI C Standard
If the equivalent of signal (sig, SIG_DFL) is not executed prior to the call of a signal
handler, the blocking of the signal that is performed
ANSI C Standard
Whether the default handling is reset if the SIGILL signal is received by a handler
specified to the signal function
ANSI C Standard
Whether the last line of a text stream requires a terminating new-line character
ANSI C Standard
Whether space characters that are written out to a text stream immediately before a
new-line character appear when read in
ANSI C Standard
The number of null characters that may be appended to data written to a binary
stream
ANSI C Standard
Whether the file position indicator of an append mode stream is initially positioned at
the beginning or end-of-the file
ANSI C Standard
Whether a write on a text stream causes the associated file to be truncated beyond
that point
ANSI C Standard
The characteristics of file buffering
ANSI C Standard
Whether a zero-length file actually exists
ANSI C Standard
The rules for composing valid file names
ANSI C Standard
Whether the same file can be open multiple times
ANSI C Standard
The effect of the remove function on an open file
ANSI C Standard
The effect if a file with the new name exists prior to a call to the rename function
ANSI C Standard
The output for %p conversion in the fprintf function
ANSI C Standard
The input for %p conversion in the fscanf function
ANSI C Standard
The interpretation of a minus sign (-) character that is neither the first nor the last
character in the scanlist for %[ conversion in the fscanf function.
ANSI C Standard
The value to which the macro errno is set by the fgetpos or ftell function on failure
#define Meaning
EBADF File is not open
ENOFILEPOS File does not support positioning requests
EIOERROR I/O error
EDATAERR I/O data error
EPARITYERROR I/O parity error
ANSI C Standard
The messages generated by the perror function
ANSI C Standard
The behavior of the calloc, malloc, or realloc functions if the size requested is zero
ANSI C Standard
The behavior of the abort function with regard to open and temporary files
ANSI C Standard
The status returned by the exit function if the value of the argument is other zero,
EXIT_SUCCESS, or EXIT_FAILURE
ANSI C Standard
The set of environment names and the method for altering the environment list used
by the getenv function
ANSI C Standard
The contents and mode of execution of the string passed by the system function
ANSI C Standard
The contents of the error message strings returned by the strerror function
ANSI C Standard
The local time zone and Daylight Savings Time
The value of tm_isdst is positive if Daylight Savings Time is in effect, zero if it is not in
effect, and negative if it cannot be determined.
ANSI C Standard
The era for the clock function
For more information on this approach, refer to Volume 2, “Headers and Functions,”
for information on the header <locale.h>. For a detailed description of the
implementation of the C locale-sensitive functions in terms of the MLS environment,
particularly the CENTRALSUPPORT library, refer to the MLS Guide which includes a
description of the process of defining the set of specific locales available on a
particular system.
The second approach for localizing an ClearPath MCP Series C program is to make use
of the CENTRALSUPPORT system library directly. This approach is the focus of the
rest of this section. The CENTRALSUPPORT system library provides a set of
procedures that may be called from a user program to perform localization functions.
For example a program can access a procedure called cnv_formattime that formats the
time according to the language and convention specified in the procedure call. While
this approach does not provide the same level of portability as the first one discussed,
it does have the advantage that the CENTRALSUPPORT interfaces are almost identical
to those used by other languages on the enterprise server. Also, there may be some
desired functionality provided by the CENTRALSUPPORT approach that is not available
through the <locale.h> facilities.
The default setting for localization can be established at the following levels:
Each of these levels has a priority, or a hierarchical rank, associated with it. A setting at
the task level overrides a setting at the session level. A setting at the session level
overrides a usercode level. A setting at the usercode level overrides a setting at the
system level and so on. Default language and convention can be established at any of
the levels, but the default ccsversion is limited to the system level.
When coding a program, in calls to the CENTRALSUPPORT library either the default
values or particular settings may be used. The task level and system level are probably
the most useful levels for most programs.
The language and convention features have defined task attributes. These attributes
can be accessed or set by programs to enable changes to the language, the
convention, or both. While C programs do not have direct access to task attributes,
these may be manipulated; for example, by writing a simple ALGOL library procedure
and calling it from C. Refer to Appendix A, “Interface to the Library Facility,” in this
manual for more information. As an alternative to using the LANGUAGE and
CONVENTION task attributes, the program may pass explicitly the desired language or
convention name when calling CENTRALSUPPORT procedures.
The LANGUAGE task attribute can be used to establish the language used by a
program at run-time. The CONVENTION task attribute can be used to establish the
convention used by a program at run-time. For example, an international bank may
have a program to print bank statements for customers in different countries. This
program could have a general routine to format dates, times, currency, and numbers
according to the selected conventions. To print a bank statement with the French
language and conventions, this program could set both the LANGUAGE task attribute
and the CONVENTION task attribute to the appropriate French settings and process
the general routine.
The current default setting for the system can be determined by using one of the
following methods:
The default settings for ccsversion, language, and convention are shown as follows:
Ccsversion ASeriesNative
Language English
Convention ASeriesNative
The hierarchy of the levels must be considered before changing the default settings
for localization. As an example, the default ccsversion is only changeable at the
system operations level. For any procedure that accepts a ccsversion number as an
input parameter, the constant value CS_VSN_NOT_SPECIFIEDV can be specified as input
to indicate that the system default value should be used. For any procedure that
accepts a ccsversion name as an input parameter, all blanks or all nulls can be
specified as inputs to indicate that the task attribute should be used. If the ccsversion
name specified by the task attribute is not available, the CENTRALSUPPORT library
searches down the hierarchy until a usable value is found.
Refer to “Understanding Default Settings and Hierarchy” in this appendix for more
information on levels.
A coded character set name or number can also be used to set the INTMODE or
EXTMODE file attribute values for a file. For more information on how to use the
INTMODE and EXTMODE file attributes, refer to the File Attributes Programming
Reference Manual.
• An 8-bit CCS uses a one-byte (8-bit) code to represent each character in the set.
Up to 256 characters can be represented. These character sets are fully described
in Sections 9 through 12 of the MLS Administration, Operations, and
Programming Guide.
• A 16-bit CCS uses a two-byte (16-bit) code to represent each character in the set.
Approximately 64 thousand characters can be represented. These character sets
Each ClearPath MCP system includes a data file, SYSTEM/CCSFILE, containing all coded
character sets and ccsversions that are supported on the system. A system default
coded character set cannot be chosen directly, but by choosing a ccsversion, the
default coded character set is implicitly designated for the system.
Data can be entered and manipulated in only one coded character set and ccsversion
at a time. Although there are many ccsversions that can be accessed, there is only one
ccsversion active for the entire system at one time, which is called the system default
ccsversion. For more information, refer to “Using the Ccsversion, Language, and
Convention Default Settings” and “Understanding the Hierarchy for Default Settings”
in this appendix.
There are several ways to determine which coded character sets and ccsversions are
available on the system:
All coded character set and ccsversion information on the system can be accessed by
calling CENTRALSUPPORT library procedures. To call these CENTRALSUPPORT library
procedures, a C program must first include system-supplied file that declares all the
library procedures. This file is called *SYMBOL/INTL/C/PROPERTIES. The syntax for
including this file in a C program is as follows:
#include "*SYMBOL/INTL/C/PROPERTIES" \
( byfunction="CENTRALSUPPORT", \
intname ="CENTRALSUPPORT" )
set or ccsversion by calling the procedures using the name or number of the coded
character set or the ccsversion as an input parameter. For example, by calling the
vsnordering_info procedure with the ccsversion name ASeriesNative, then calling the
vsnordering_info procedure again with the ccsversion name SWITZERLAND, a
program can access data in the ASeriesNative ccsversion and then access data in the
Switzerland ccsversion. A program can also use the system default setting by using
predefined values as input parameters. Refer to “Input Parameters” in this appendix
for specific information about those parameters.
Mapping Tables
Many CENTRALSUPPORT library procedures store coded character sets and
ccsversion information in translation tables that are used to process and map data. A
translation table is used to translate one group of characters to another group of
characters or another representation of the original characters, such as translating
lowercase characters to uppercase characters.
Data Classes
A data class is a group of characters sharing common attributes, such as alphabetic,
upon which membership tests can be made. A truthset is a method of storing the
declared set of characters upon which membership tests can be made. Many
CENTRALSUPPORT library procedures store ccsversion information in ALGOL truthset
tables as a way to define ccsversion data classes.
The internationalization features provide access to the following truthsets that apply
to a specified ccsversion:
• Ccsversion alphabetic
• Ccsversion numeric
• Ccsversion graphics
• Ccsversion spaces
• Ccsversion lowercase
• Ccsversion uppercase
The alphabetic truthset contains those characters that are considered alphabetic for a
specified ccsversion. The numeric truthset contains those characters that are
considered numbers for a specified ccsversion, and so on.
Refer to the explanation of the vsninspect_text procedure in this section for more
information about using truthsets. Refer also to the MLS Guide for definitions of
ccsversions and data classes.
Text Comparisons
A text comparison can be required for sorting text or for comparing relationships
between two pieces of text.
The traditional method for handling text comparisons is based on a strict binary
comparison of the character values. The binary method of comparison is not
meaningful when used for sorting text if the binary ordering of the coded characters
does not match the ordering sequence of the language’s alphabet. This is the situation
for most coded character sets.
Since the binary method is not sufficient for all usage requirements, two other levels
of text comparison are supported:
1. Ordering
Each character gets an Ordering Sequence Value (OSV). An OSV is an integer
from 0 through 255, assigned to each code position in a character set. The OSV
signifies a relative ordering value of a character. An OSV of 1 indicates that the
character comes before a character with an OSV of 2. More than one character
may be assigned the same OSV.
Only the character NUL may have an OSV of 0.
2. Collating
Each character gets an OSV and a Priority Sequence Value (PSV). A PSV is an
integer from one to five that is assigned to each code position in a character set.
The PSV is a relative priority value within each OSV. Each character with a unique
OSV has a PSV of 1; however, if two characters have the same OSV, they have
different PSVs for differentiation.
When comparing two strings of data, a comparison that uses only the first level, the
Ordering level, is called an equivalent comparison. A comparison that utilizes both
levels, Ordering and Collating, is called a logical comparison.
Specify the following three types of ordering for text comparisons when calling the
procedures of the CENTRALSUPPORT library:
In addition to the three types of ordering, the following types of character substitution
are supported:
Substitution Explanation
For a description of how the characters in each ccsversion are ordered and how text
comparisons work, refer to the MLS Guide.
A program must be written in the subset of the standard EBCDIC character set
defined by the C language. Only the contents of string literals, data items with variable
character data, or comments can be in a character set other than EBCDIC.
If a program interacts with a user, has a user interface with screens or forms, displays
messages, or accepts user input, then those aspects of the program should be in the
natural language of the user. For example, French would be the natural language of a
person born and raised in France. Refer to the MLS Guide for a list of user interface
tools that can be localized. The following text explains how to develop a C application
program, in conjunction with an ALGOL library, that supports interaction in the natural
language of the user.
Output message A message that an application program displays to the user. Some
examples of output messages are error messages and prompts for
input. An output message is localized so that it can be displayed in
the language of the user.
Input message A message received by an interactive program either from a user or
from another program in response to a prompt for input. The input
message may be in a language that the program cannot recognize.
In this instance, the message must be translated so that it can be
understood by the program.
The localization process is easier if input and output messages are stored within an
ALGOL output message array. When messages are in an output message array, the
translator can use the MSGTRANS utility to localize the messages into one or more
natural languages.
In addition, a program is provided in the MLS Guide that demonstrates how to create
an ALGOL library containing output message arrays and how to display the messages
contained in the output message arrays from a C application. This program, called
EXAMPLE/MLS/ALGOL/LIBRARY, is an example of how to use message arrays to
make a C program multilingual.
A new convention can be defined if none of the available conventions are satisfactory.
This is done by creating a custom template. A template is a group of predefined
control characters that describe the components for date, time, numeric, or monetary
values; it is used in the CENTRALSUPPORT library procedures. For example, with the
data item, 02251990, and the template, !0o!/!dd!/!yyyy!, the formatted date, 02/25/1990
is produced.
Refer to the MLS Guide for information on control characters, creating templates, and
defining conventions.
• The program supplies the convention name and the value for the date or time. The
procedure returns the date or time value in the format used by the convention.
• The program supplies the format for the date or time in a template parameter, as
well as the value for the date or time. Predefined control characters must be used
to create the template. These control characters are described in the MLS Guide.
• The system supplies the date and time. There are both a system convention
procedure that formats the system date and time according to a convention and a
template procedure in which the program supplies the format.
The cnv_displaymodel procedure can be called to display to the user the format in
which the date or time must be entered.
For example, use the cnv_systemdatetime procedure to display the system date and
time according to the convention and language desired. If the ASeriesNative
convention and the English language is designated, the date and time is displayed as
follows:
If you designate the FranceListing convention and the French language, the same date
and time is displayed as follows:
For example, the Netherlands convention definition specifies 70 lines as the page
length and 82 characters as the page width, while the Zimbabwe convention definition
specifies 66 lines as the page length and 132 lines as the page width.
ccsinfo provides basic information about a designated coded character set, including
the number of bits per character (8, 16, or mixed 8 and 16) , the coding format (for
example, ISO, Doublebyte, or UCSBMP) and the space character.
vsninfo
• The number of the base character set to which the ccsversion applies
• The escapement information
• The space characters used for the ccsversion
• The array sizes required by the other ccsversion elements
ccstoccs_trans_text
ccstoccs_trans_text translates data (text) from one character set to another character
set by using a translation table. Characters are translated using a one-to-one mapping
between the two character sets. Note that ccstoccs_trans_text cannot be used to
map multibyte character sets.
ccstoccs_trans_text_complex
inspect_text_using_tset
• Alphabetic
• Numeric
• Lowercase
• Spaces
• Presentation
• Uppercase
trans_text_using_ttable
• Alphabetic
• Numeric
• Lowercase
• Spaces
• Presentation
• Uppercase
vsntranstable
vsntrans_text
vsntrans_text translates data using a designated ccsversion translation table. The type
of table used determines the type of translation done. All translation is a one-to-one
mapping of the characters.
vsntruthset
vsntruthset returns a truthset for the designated ccsversion. The truthset contains
the characters in a given data class for the ccsversion and are available for the
following data classes:
• Alphabetic
• Numeric
• Lowercase
• USpace
• Presentation
• Manipulating
• Uppercase
• Equivalent comparison
This is based on the ordering sequence values of the characters
• Logical comparison
This is based on the ordering sequence values and the priority sequence values of
the characters
vsncompare_text
vsncompare_text compares text where the first record can be less than, less than or
equal to, equal to, greater than, greater than or equal to, or not equal to the second.
One of the following comparison methods is used for a designated ccsversion:
• Binary comparison
This is based on the binary code values of the characters
• Equivalent comparison
This is based on the OSVs of the characters
• Logical comparison
This is based on the OSVs and PSVs of the characters that return the ordering
information for the input text.
vsngetorderingfor_one_text
vsngetorderingfor_one_text returns the ordering information for the input text. The
ordering information determines how the input text is collated, including the ordering
and priority sequence values of the characters and any substitution of characters
made when the input text is sorted.
vsnordering_info
Positioning Characters
vsnescapement
vsnescapement rearranges the input text according to the escapement rules of the
ccsversion.
mcp_bound_languages returns the names of the languages that are currently bound to
the MCP.
cnv_names
cnv_names returns the names of the conventions available on the host computer.
cnv_validatename
cnv_symbols
cnv_symbols returns the numeric and monetary symbols defined for a designated
convention. The symbols in the convention are
cnv_template
cnv_template returns the requested format template for a designated convention set.
The template can be obtained for the following:
cnv_displaymodel
cnv_displaymodel returns either the date or time display model defined for a
designated convention. The component designators for the model are
translated to the designated language.
cnv_formatdate
cnv_formatdatetmp
cnv_systemdatetime
cnv_systemdatetime returns the system date and/or time formatted according to the
designated convention and language. The following types of templates can be chosen:
cnv_systemdatetimetmp
cnv_converttime
cnv_displaymodel
cnv_displaymodel returns either the date or time display model defined for a
designated convention. The component designators for the model are translated to
the designated language.
cnv_formattime
cnv_formattimetmp
cnv_systemdatetime
cnv_systemdatetime returns the system date and/or time formatted according to the
designated convention and language. The following types of templates can be chosen:
cnv_systemdatetimetmp
cnv_currencyedit_double
cnv_currencyedittmp_double
cnv_add adds a new convention to the SYSTEM/CONVENTIONS file. The new definition
goes into effect immediately.
cnv_delete
cnv_modify
Library Calls
You can access the procedures in the CENTRALSUPPORT library within a C program
by using the following steps:
Refer to Appendix A, “Interface to the Library Facility,” in this manual for details on
calling ALGOL procedures from a C program.
Parameter Categories
The CENTRALSUPPORT library procedures return output parameters and procedure
result values. The parameter types are further described here.
Input Parameters
In many cases, the input parameter requires the program to supply the ccsversion
name or number, the language name, or the convention name. This information can be
obtained in the following ways:
• The MLS Guide describes all the ccsversions, languages, and conventions that are
provided. However, the system on which the program is running may have only a
subset of these. There can also be customized conventions that are not listed in
the MLS Guide. These can be identified by the next three options.
• A system administrator, a privileged user, or any person allowed to use the
system console can use MARC menus and screens to list the options that exist on
the system. The MLS Guide provides the instructions needed to obtain information
about ccsversions, languages, or convention definitions.
• Procedures can be called in the CENTRALSUPPORT library that can return this
information. If an application is being written to be used on another system, these
library procedures can be used to verify that the ccsversion, language, or
convention specified by the user is valid on the system.
• The SYSTEMOPTIONS command can be used. For more information on the
SYSTEMOPTIONS command, refer to the System Commands Operations
Reference Manual.
For any procedure that accepts a ccsversion number as an input parameter, specify a -
2 (or the macro name CS_VSN_NOT_SPECIFIEDV) as input to indicate that the system
default value should be used. For any procedure that accepts a ccsversion name as an
input parameter, specify all blanks or all zeros as inputs to indicate that the system
default value should be used. For any procedure that accepts a language or convention
name as an input parameter, specify all blanks or zeros as inputs to indicate that the
task attribute should be used. If the task attribute is not available, the
CENTRALSUPPORT library searches down the hierarchy until a usable value is found.
For example, the typ parameter is used in a number of procedures to indicate the type
of date or time formatting used. The type value indicates the type of format used. For
example, a value of 3 indicates the long time format.
than using the value 3, the long time format may be designated with the macro
CS_LTIMEV.
Output Parameters
These parameters are filled in by the procedure. For example, the dest parameter of
the ccstoccs_trans_text procedure contains the translated text produced by the
procedure.
Return Value
All the library procedures return a value as the procedure result, indicating whether an
error occurred during the execution of the procedure. In general, a returned value of
CS_DATAOKV or CS_FALSEV means that no error occurred and any other value means an
error occurred. However, the cnv_validatename and vsncompare_text procedures are
exceptions to this rule. For these procedures, the returned value can be 0 (zero), 1, or
another value. A returned value of 0 (zero) means that no error occurred and the
condition is FALSE. A returned value of 1 means that no error occurred and the
condition is TRUE. Any other value means that an error occurred.
Each procedure lists the values that can be returned by that procedure; these values
are explained at the end of this section. The results can be used to call the get_cs_msg
procedure and to display the error that occurred or error routines can be coded to
handle the possible errors.
The INCLUDE file contains #defines that map each integer result into a macro identifier
to be used by the program.
Procedure Descriptions
The following is an alphabetical listing of the procedures residing in the
CENTRALSUPPORT library that a C program can access. Each description includes a
function prototype, a general overview of the procedure, an example showing how to
call the procedure, and an explanation of the parameters used in the example.
ccsinfo
Prototype
int ccsinfo( int ccs_num, float ( *ccs_ary) [ ], int ccs_ary_size);
This procedure provides basic information about a designated coded character set,
including the number of bits per character (8, 16, or mixed 8 and 16) and the coding
format (such as ISO, STDEBCDIC, or DoubleByte).
ccsinfo can be used, for example, to determine the code format for a file that has its
INTMODE set to a character set name. Refer to the MLS Guide for a list of coded
character sets available.
ccs_num is an integer passed to the procedure, containing the number of the coded
character set about which information is requested.
ccs_ary is a float array returned by the procedure, containing the following information
about a coded character set from the character set and ccsversion file:
Location Information
Word [1] Repetoire number (not used by new coded character sets)
Word [2] Encoding number (not used by new coded character sets)
% ASCII SB = 4
% 2200 LS = 5
Words 6-9 are repeated starting at word10 for every subCCS which is a part of t
his coded character set. That is, word 5 is followed by four words of informat
ion for every subCCS record. The number of subCCS records is specified in word
5.
Notes:
• Extension facilities are the escape sequences in an ISO environment that are
used to specify the code sets (such as C0, C1, G0, G1) from which ISO builds
coded character sets. The escape sequences are defined in ISO standard 2022,
titled “Information Processing -- ISO 7-Bit and 8-Bit Coded Character Sets”.
• A mixed, multibyte coded character set requires at least one 8-bit CCS, at least
one 16-bit CCS and a set of subCCS records to define characteristics of each
CCS in the set.
The recommended array size without escape sequences or subCCS information is five
words. In all other cases, the recommended size is 30 words.
rslt is an integer that is returned as the value of the procedure, indicating whether an
error occurred during the ccsinfo procedure. Any value other than CS_DATAOKV
indicates an error. An explanation of the error result values and messages can be
found at the end of this section. Check the procedure result whenever this procedure
is used.
CS_ARRAY_TOO_SMALLV CS_BAD_ARRAY_DESCRIPTIONV
CS_DATAOKV CS_FAULTV
CS_FILE_ACCESS_ERRORV CS_SOFTERRV
ccstoccs_trans_table
Prototype
int ccstoccs_trans_table( int ccsnumfrom, int ccsnumto,
float (*ttable_ary) [ ],int ttable_ary_size );
Because the table is stored in a program variable, it does not have to be retrieved
each time it is used.
ccsnumfrom is an integer passed to the procedure, containing the number of the coded
character set from which translation is to occur.
ccsnumto is an integer passed to the procedure, containing the number of the coded
character set to which translation is to occur.
ttable_ary is a float array in which the translation table is returned. The recommended
size is 64 words.
rslt is an integer that is returned as the value of the procedure, indicating whether an
error occurred during the ccstoccs_trans_table procedure. Any value other than
CS_DATAOKV indicates an error. An explanation of the error result values and messages
can be found at the end of this section. Check the procedure result whenever this
procedure is used.
CS_ARRAY_TOO_SMALLV CS_BAD_ARRAY_DESCRIPTIONV
CS_DATA_NOT_FOUNDV CS_DATAOKV
CS_FAULTV CS_FILE_ACCESS_ERRORV
CS_SOFTERRV CS_COMPLEX_TRAN_REQV
ccstoccs_trans_text
Prototype
int ccstoccs_trans_text( int ccsnumfrom, int ccsnumto,
char (*source) [ ], int source_size,
int source_start, char (*dest) [ ], int dest_size,
int dest_start,int_trans_len );
The ccstoccs_trans_text procedure translates data from one coded character set
specified in the ccsnumfrom parameter to the coded character set specified in the
ccsnumto parameter by using a translation table. Characters are translated using a one-
to-one mapping between two character sets.
For example, a program may translate text in the LATIN1EBCDIC coded character set
to the LATIN1ISO coded character set. Refer to the MLS Guide for a list of the coded
character set numbers that are available as inputs to this procedure.
Mapping tables are not available for every combination of coded character set pairs. If
the requested mapping is not available through this procedure or through the
ccsnumfrom is an integer passed to the procedure, containing the number of the coded
character set associated with source data.
ccsnumto is an integer passed to the procedure, containing the number of the coded
character set to which translation occurs. The destination text is in this coded
character set.
source is a character array passed to the procedure, containing the text to translate.
rslt is an integer that is returned as the value of the procedure, indicating whether an
error occurred during the ccstoccs_trans_text procedure. Any value other than
CS_DATAOKV indicates an error. An explanation of the error result values and messages
can be found at the end of this section. Check the procedure result whenever this
procedure is used.
CS_ARRAY_TOO_SMALLV CS_BAD_ARRAY_DESCRIPTIONV
CS_DATA_NOT_FOUNDV CS_DATAOKV
CS_FAULTV CS_FILE_ACCESS_ERRORV
CS_NO_NUM_FOUNDV CS_SOFTERRV
ccstoccs_trans_text_complex
Prototype
int ccstoccs_trans_text_complex( int ccsnumfrom, int ccsnumto,
char (*source)[], int source_size,
int *source_inx, int source_bytes,
char (*dest)[], int dest_size,
int *dest_inx, int dest_bytes,
float (*state)[],
int option )
For example, a program may translate text in the 16-bit JBIS8 coded character set to
the 16-bit JSBIS7 coded character set. Refer to the MLS Guide for a list of the coded
character set numbers that are available as inputs to this procedure.
Mapping tables are not available for every combination of coded character set pairs. If
the requested mapping is not available, the procedure returns the value
CS_DATA_NOT_FOUNDV.
ccsnumfrom is an integer passed to the procedure, containing the number of the coded
character set associated with source data.
ccsnumto is an integer passed to the procedure, containing the number of the coded
character set to which translation occurs. The destination text is in this coded
character set.
source is a character array passed to the procedure, containing the text to translate.
The maximum size is 64,000 words.
dest_size is an integer containing the number of elements in the dest array. A value
that is twice the size of source_size always works.
dest_inx is an integer specifying the byte offset (0 relative) where the output text is
stored in the dest array.
state is a real array that is ten words long. It is owned by (but not touched by) the
caller. It is structured as follows:
state_size is an integer that defines the size of the state array. It must be greater
than or equal to 10.
Value Message
0 CS_OPT_INITIAL_COMPLETEV
1 CS_OPT_TAILV
2 CS_OPT_INITIAL_HEADV
3 CS_OPT_MIDDLEV
4 Same as 0.
5 CS_OPT_COMPLETEV
6 Same as 2.
7 CS_OPT_HEADV
rslt is an integer that is returned as the value of the procedure, indicating whether an
error occurred during the ccstoccs_trans_text_complex procedure. Any value other
than CS_DATAOKV indicates an error. An explanation of the error result values and
messages can be found at the end of this section. Check the procedure result
whenever this procedure is used.
CS_ARRAY_TOO_SMALLV CS_FILE_ACCESS_ERORV
CS_BAD_DATA_LENV CS_INCOMPLETE_CHARV
CS_BAD_ARRAY_DESCRIPTIONV CS_INCOMPLETEDATAV
CS_DATA_NOT_FOUNDV CS_SOFTERRV
CS_FAULTEDV
ccsvsn_names_nums
Prototype
int ccsvsn_names_nums( int ccsvsn_type, int *total, char (*names_ary) [ ],
int names_ary_size, int (*nums_ary) [ ],
int nums_ary_size );
This procedure returns a list of coded character set names and numbers or a list of
ccsversion names and numbers that are available on the system. The type of list can
be specified with the ccsvsn_type parameter.
This procedure may be used to create a menu that lists the ccsversions from which to
choose on the host computer. It may also be used to verify that the ccsversion used
by a program is available on the host computer.
total is an integer returned by the procedure that contains the number of character
set or ccsversion entries that exist.
rslt is an integer that is returned as the value of the procedure, indicating whether an
error occurred during the ccsvsn_names_nums procedure. Any value other than
CS_DATAOKV indicates an error. An explanation of the error result values and messages
can be found at the end of this section. Check the procedure result whenever this
procedure is used.
CS_ARRAY_TOO_SMALLV CS_BAD_ARRAY_DESCRIPTIONV
CS_BAD_TYPE_CODEV CS_DATAOKV
CS_FAULTV CS_SOFTERRV
centralstatus
Prototype
int centralstatus( char (*sys_info) [ ], int sys_info_size,
int (*control_info) [ ], int control_info_size );
This procedure returns the name and number of the system default ccsversion, the
name of the system default convention, and the name of the system default language.
Information about the level of the CENTRALSUPPORT library is also returned.
This procedure can be used to provide a means for application users to inquire about
the default settings on the host computer.
sys_info is a character array returned by the procedure, containing the system default
ccsversion, language, and convention name in that order. Each name is 17 characters
long. Names shorter than 17 characters are padded on the right with blanks. The
recommended array size is 51 characters.
Location Information
Word[0] System default ccsversion number
Word[1] through [7] Reserved
rslt is an integer that is returned as the value of the procedure, indicating whether an
error occurred during the centralstatus procedure. Any value other than CS_DATAOKV
indicates an error. An explanation of the error result values and messages can be
found at the end of this section. Check the procedure result whenever this procedure
is used.
CS_ARRAY_TOO_SMALLV CS_BAD_ARRAY_DESCRIPTIONV
CS_DATAOKV CS_FAULTV
CS_FILE_ACCESS_ERRORV CS_SOFTERRV
cnv_add
Prototype
int cnv_add( char (*cnv_name) [ ], int cnv_name_size, float (*add_ary) [ ],
int add_ary_size );
The cnv_add procedure adds a new convention to the SYSTEM/CONVENTIONS file. The
new definition goes into effect immediately.
cnv_name is a character array passed to the procedure, containing the name of the
convention to be added to the SYSTEM/CONVENTIONS file.
add_ary is a float array passed to the procedure, containing the convention definition
to be added to the SYSTEM/CONVENTIONS file. For the procedure to work, all fields in
add_ary must contain data or an appropriate error result is returned.
The international currency notation field contains the international currency symbol
defined for the convention. The international currency symbol is surrounded by a pair
of matching delimiters that are not part of the symbol. Any blanks inside the delimiters
are significant and are treated as any other character. For example, the international
currency symbol for the ASERIESNATIVE convention is “USD ”; the trailing blank is
significant and the quotation marks are delimiters.
rslt is an integer that is returned as the value of the procedure, indicating whether an
error occurred during the cnv_add procedure. Any value other than CS_DATAOKV
indicates an error. An explanation of the error result values and messages can be
found at the end of this section. Check the procedure result whenever this procedure
is used.
CS_BAD_ALTFRACDIGITSV CS_BAD_ARRAY_DESCRIPTIONV
CS_BAD_CPLV CS_BAD_DATA_LENV
CS_BAD_FRACDIGITSV CS_BAD_LDATETEMPV
CS_BAD_LPPV CS_BAD_LTIMETEMPV
CS_BAD_MAXDIGITSV CS_BAD_MONTEMPV
CS_BAD_NDATETEMPV CS_BAD_NTIMETEMPV
CS_BAD_NUMTEMP CS_BAD_SDATETEMPV
CS_CNV_EXISTS_ERRV CS_CNVFILE_NOTPRESENTV
CS_CONVENTION_NOT_FOUNDV CS_DATAOKV
CS_FAULTV CS_FILE_ACCESS_ERRORV
CS_SOFTERRV
cnv_convertcurrency
Prototype
int cnv_convertcurrency( int vsnnum, char (*cc_ary) [ ], int cc_ary_size,
char (*cnv_name) [ ], int cnv_name_size,
float *amt );
This procedure converts a string containing digits and monetary symbols to a real
number.
vsnnum is an integer passed to the procedure, containing the number of the ccsversion
that was in effect when the input string was created. The ccsversion contains the
rules for translation of text. Refer to the MLS Guide for a list of the ccsversion
numbers. If the input string contains alternate digits, then they are translated to their
corresponding 0-9 numbers. The values allowed for vsnnum and the meanings of the
values are as follows:
Value Meaning
Greater than or equal to 0 Use the specified ccsversion number.
CS_VSN_NOT_SPECIFIEDV Use the system default ccsversion. If the
system default ccsversion is not available, an
error is returned.
cc_ary is a character array that contains the input string of digits and monetary
symbols.
cnv_name is a character array that is passed to the procedure, containing the name of
the convention used to format the input string. If this parameter contains all blanks or
zeros, the procedure uses the hierarchy to determine the convention to be used.
amt is a float number that is returned by the procedure, containing the converted
number.
rslt is an integer that is returned as the value of the procedure, indicating whether an
error occurred during the cnv_convertcurrency procedure. Any value other than
CS_DATAOKV indicates an error. An explanation of the error result values and messages
can be found at the end of this section. Check the procedure result whenever this
procedure is used.
CS_ARRAY_TOO_SMALLV CS_BAD_ARRAY_DESCRIPTIONV
CS_BAD_DATA_LENV CS_BAD_INPUTVALV
CS_CONVENTION_NOT_FOUNDV CS_DATA_NOT_FOUNDV
CS_DATAOKV CS_FAULTV
CS_FILE_ACCESS_ERRORV CS_SOFTERRV
cnv_convertdate
Prototype
int cnv_convertdate( int vsnnum, char (*cd_ary) [ ], int cd_ary_size,
char (*cnv_name) [ ], int cnv_name_size,
char (*date_ary) [ ], int date_ary_size );
vsnnum is an integer passed to the procedure, containing the ccsversion number that
was in effect when date was formatted. If the input string contains alternate digits,
then they are translated to their corresponding 0-9 numbers. The values allowed for
vsn_num and the meanings of the values are as follows:
Value Meaning
Greater than or equal to 0 Use the specified ccsversion number.
CS_VSN_NOT_SPECIFIEDV Use the system default ccsversion. If the
system ccsversion is not available, an error is
returned.
cd_ary is a character array passed to the procedure, containing the formatted date.
cnv_name is a character array passed to the procedure, containing the name of the
convention from which the date formatting templates are retrieved.
rslt is an integer that is returned as the value of the procedure, indicating whether an
error occurred during the cnv_convertdate procedure. Any value other than
CS_DATAOKV indicates an error. An explanation of the error result values and messages
can be found at the end of this section. Check the procedure result whenever this
procedure is used.
CS_ARRAY_TOO_SMALLV CS_BAD_ARRAY_DESCRIPTIONV
CS_BAD_DATA_LENV CS_BADDATEINPUTV
CS_BAD_TEMPCHARV CS_BAD_TYPE_CODEV
CS_CONVENTION_NOT_FOUNDV CS_DATA_NOT_FOUNDV
CS_DATAOKV CS_FAULTV
CS_FILE_ACCESS_ERRORV CS_SOFTERRV
cnv_convertnumeric
Prototype
int cnv_convertnumeric( int vsnnum, char (*cc_ary) [ ], int cc_ary_size,
char (*cnv_name) [ ], int cnv_name_size,
float *amt );
This procedure converts a string containing digits and numeric symbols to a float
number.
vsnnum is an integer that is passed to the procedure, containing the number of the
ccsversion that was in effect when the input string was created. If the input string
contains alternate digits, then they are translated to their corresponding 0-9 numbers.
The values allowed for vsn_num and the meanings of the values are as follows:
Value Meaning
Greater than or equal to 0 Use the specified ccsversion number.
CS_VSN_NOT_SPECIFIEDV Use the system default ccsversion. If the
system default ccsversion is not available, an
error is returned.
cc_ary is a character array that is passed to the procedure, containing the string of
digits and numeric symbols to be converted.
cnv_name is a character array that is passed to the procedure, containing the name of
the convention used to format the input string.
amt is a result returned by the procedure, containing the converted float number.
rslt is an integer that is returned as the value of the procedure, indicating whether an
error occurred during the cnv_convertnumeric procedure. Any value other than
CS_DATAOKV indicates an error. An explanation of the error result values and messages
can be found at the end of this section. Check the procedure result whenever this
procedure is used.
CS_ARRAY_TOO_SMALLV CS_BAD_ARRAY_DESCRIPTIONV
CS_BAD_DATA_LENV CS_BAD_INPUTVALV
CS_CONVENTION_NOT_FOUNDV CS_DATA_NOT_FOUNDV
CS_DATAOKV CS_FAULTV
CS_FILE_ACCESS_ERRORV CS_SOFTERRV
cnv_converttime
Prototype
int cnv_converttime( int vsnnum, char (*ct_ary) [ ], int ct_ary_size,
char (*cnv_name) [ ], int cnv_name_size,
char (*time_ary) [ ], int time_ary_size );
vsnnum is an integer passed to the procedure, containing the ccsversion number that
was in effect when the time was formatted. If the input string contains alternate
digits, then they are translated to their corresponding 0-9 numbers. The values
allowed for vsn_num and the meanings of the values are as follows:
Value Meaning
Greater than or equal to 0 Use the specified ccsversion number.
CS_VSN_NOT_SPECIFIEDV Use the system default ccsversion. If the
system default ccsversion is not available, an
error is returned.
ct_ary is a character array passed to the procedure, containing the formatted time.
cnv_name is a character array passed to the procedure, containing the name of the
convention that was used to format the input time.
rslt is an integer that is returned as the value of the procedure, indicating whether an
error occurred during the cnv_converttime procedure. Any value other than
CS_DATAOKV indicates an error. An explanation of the error result values and messages
can be found at the end of this section. Check the procedure result whenever this
procedure is used.
CS_ARRAY_TOO_SMALLV CS_BAD_ARRAY_DESCRIPTIONV
CS_BAD_DATA_LENV CS_BADTIMEINPUTV
CS_CONVENTION_NOT_FOUNDV CS_DATA_NOT_FOUNDV
CS_DATAOKV CS_FAULTV
CS_FILE_ACCESS_ERRORV CS_SOFTERRV
cnv_currencyedit_double
Prototype
int cnv_currencyedit_double ( long double amt,
int precision,
char (*cnv_name) [ ],
int cnv_name_size, int *ce_len,
char (*ce_ary) [ ],
int ce_ary_size );
The procdure may be used to print a report with the numeric and currency formats for
the Costa Rican convention (such as CRC 89.99) or for the Norwegian convention
(such as NKR 89.99).
amt is a double-precision integer passed to the procedure, containing the value of the
currency.
cnv_name is a character array passed to the procedure, containing the name of the
convention used to edit the currency value. If this parameter contains all blanks or
zeros, the procedure uses the hierarchy to determine the convention used. Refer to
the MLS Guide for the list of convention names and an explanation of the hierarchy.
ce_ary is a character array returned by the procedure, containing the formatted string.
rslt is an integer that is returned as the value of the procedure, indicating whether an
error occurred during the cnv_currencyedit_double procedure. Any value other than
CS_DATAOKV indicates an error. An explanation of the error result values and messages
can be found at the end of this section. Check the procedure result whenever this
procedure is used.
CS_BAD_ARRAY_DESCRIPTIONV CS_BAD_DATA_LENV
CS_CONVENTION_NOT_FOUNDV CS_DATAOKV
CS_FAULTV CS_SOFTERRV
CS_BAD_AMTV CS_BAD_PRECISIONV
cnv_currencyedittmp_double
Prototype
int cnv_currencyedittmp_double ( long double amt,
int precision,
char (*tmp_ary) [ ],
int tmp_ary_size,
char (*cnv_name) [ ],
int cnv_name_size, int *ce_len,
char (*ce_ary [ ],
int ce_ary_size );
amt is a double-precision integer passed to the procedure, containing the value of the
currency.
cnv_name is a character array passed to the procedure, containing the name of the
convention to be used. When a caller-supplied monetary template (in tmp_ary)
contains one or more control characters in simple form (control character without a
symbol definition enclosed in square brackets ([ ]) following it), symbols associated
with those control characters are retrieved from the monetary template in the
convention specified by cnv_name.
CS_BAD_ARRAY_DESCRIPTIONV CS_BAD_DATA_LENV
CS_DATAOKV CS_FAULTV
CS_SOFTERRV CS_BAD_AMTV
CS_BAD_PRECISIONV
cnv_delete
Prototype
int cnv_delete( char (*cnv_name) [ ], int cnv_name_size );
Note that this procedure can be used to delete only conventions that have been
created by the user; system-supplied convention sets cannot be deleted.
cnv_name is a character array passed to the procedure, containing the name of the
convention to be deleted from the conventions file.
rslt is an integer that is returned as the value of the procedure, indicating whether an
error occurred during the cnv_delete procedure. Any value other than CS_DATAOKV
indicates an error. An explanation of the error result values and messages can be
found at the end of this section. Check the procedure result whenever this procedure
is used.
CS_BAD_ARRAY_DESCRIPTIONV CS_BAD_DATA_LENV
CS_CNVFILE_NOTPRESENTV CS_CNV_NOTAVAILV
CS_DATAOKV CS_FAULTV
CS_FILE_ACCESS_ERRORV CS_SOFTERRV
cnv_displaymodel
Prototype
int cnv_displaymodel( int typ, char (*cnv_name) [ ], int cnv_name_size,
char (*lang_name) [ ], int lang_name_size,
int *dm_len, char (*dm_ary) [ ], int dm_ary_size );
This procedure returns a display model for either the numeric date or the numeric
time, whichever one is requested in the typ parameter. A display model is a format
that can be displayed to show the form of the requested input. For example,
YYDDMM is a display model that shows the form in which the date must be entered.
The procedure creates the display model according to the convention and language
specified.
typ is an integer passed to the procedure. typ indicates whether the display model is
for the numeric date or for the numeric time.
cnv_name is a character array passed to the procedure, containing the name of the
convention from which the date or time model is retrieved. If this parameter contains
all blanks or zeros, the procedure uses the hierarchy to determine the convention
used. Refer to the MLS Guide for the list of convention names and the explanation of
the hierarchy.
dm_len is an integer returned by the procedure that contains the length of the
requested display model.
dm_ary is a character array returned by the procedure, containing the requested display
model.
rslt is an integer that is returned as the value of the procedure, indicating whether an
error occurred during the cnv_displaymodel procedure. Any value other than
CS_DATAOKV indicates an error. An explanation of the error result values and messages
can be found at the end of this section. Check the procedure result whenever this
procedure is used.
CS_ARRAY_TOO_SMALLV CS_BAD_ARRAY_DESCRIPTIONV
CS_BAD_DATA_LENV CS_BAD_TYPE_CODEV
CS_CONVENTION_NOT_FOUNDV CS_DATAOKV
CS_FAULTV CS_LANGUAGE_NOT_FOUNDV
CS_SOFTERRV
cnv_formatdate
Prototype
int cnv_formatdate( int typ, char (*date_ary) [ ], int date_ary_size,
char (*cnv_name) [ ], int cnv_name_size,
char (*lang_name) [ ], int lang_name_size, int *fd_len,
char (*fd_ary) [ ], int fd_ary_size );
typ is an integer passed to the procedure, indicating one of the following three
formats is to be used when the date is returned:
cnv_name is a character array passed to the procedure, containing the name of the
convention used to edit the date value. If this parameter contains all blanks or zeros,
the procedure uses the hierarchy to determine the convention used. Refer to the MLS
Guide for the list of convention names and the explanation of the hierarchy.
lang_name is a character array passed to the procedure, containing the language used
in formatting the date. If this parameter contains all blanks or zeros, the procedure
uses the hierarchy to determine the language used. Refer to the MLS Guide for
information about determining the valid language names on the system and an
explanation of the hierarchy.
fd_len is an integer returned by the procedure, containing the length of the formatted
date.
fd_ary is a character array returned by the procedure that contains the formatted
date.
rslt is an integer that is returned as the value of the procedure, indicating whether an
error occurred during the cnv_formatdate procedure. Any value other than CS_DATAOKV
indicates an error. An explanation of the error result values and messages can be
found at the end of this section. Check the procedure result whenever this procedure
is used.
CS_ARRAY_TOO_SMALLV CS_BAD_ARRAY_DESCRIPTIONV
CS_BAD_DATA_LENV CS_BADDATEINPUTV
CS_BAD_TYPE_CODEV CS_CONVENTION_NOT_FOUNDV
CS_DATAOKV CS_FAULTV
CS_FIELD_TRUNCATEDV CS_LANGUAGE_NOT_FOUNDV
CS_SOFTERRV
cnv_formatdatetmp
Prototype
tmp_ary is a character array passed to the procedure, containing the template used to
format the date. The template must use the control characters described in the MLS
Guide.
fd_len is an integer returned by the procedure, containing the length of the formatted
date.
fd_ary is a character array returned by the procedure, containing the formatted date.
rslt is an integer that is returned as the value of the procedure, indicating whether an
error occurred during the cnv_formatdatetmp procedure. Any value other than
CS_DATAOKV indicates an error. An explanation of the error result values and messages
can be found at the end of this section. Check the procedure result whenever this
procedure is used.
CS_ARRAY_TOO_SMALLV CS_BAD_ARRAY_DESCRIPTIONV
CS_BAD_DATA_LENV CS_BADDATEINPUTV
CS_BAD_TEMPCHARV CS_BAD_TEMPLENV
CS_DATAOKV CS_FAULTV
CS_FIELD_TRUNCATEDV CS_LANGUAGE_NOT_FOUNDV
CS_SOFTERRV
cnv_formattime
Prototype
int cnv_formattime( int typ, char (*time_ary) [ ], int time_ary_size,
char (*cnv_name) [ ], int cnv_name_size,
char (*lang_name) [ ], int lang_name_size, int *ft_len,
char (*ft_ary) [ ], int ft_ary_size );
This procedure formats a user-supplied time in the form designated by the typ
parameter. The typ parameter identifies the kind of template to be retrieved from the
named convention and used to format time. The formatted time is returned in the
user-specified language.
typ is an integer passed to the procedure, indicating one of the following formats is
used when the time is returned:
cnv_name is a character array passed to the procedure, containing the name of the
convention used to edit the time value. If this parameter contains all blanks or zeros,
the procedure uses the hierarchy to determine the convention used. Refer to the MLS
Guide for the list of convention names and the explanation of the hierarchy.
lang_name is a character array passed to the procedure, containing the language used
in formatting the time. If this parameter contains all blanks or zeros, the procedure
uses the hierarchy to determine the language used. Refer to the MLS Guide for
information about determining the valid language names on the system being used
and the explanation of the hierarchy.
ft_len is an integer returned by the procedure that contains the length of the
formatted time.
ft_ary is a character array returned by the procedure, containing the time value
formatted according to the specified convention and language.
rslt is an integer that is returned as the value of the procedure, indicating whether an
error occurred during the cnv_formattime procedure. Any value other than CS_DATAOKV
indicates an error. An explanation of the error result values and messages can be
found at the end of this section. Check the procedure result whenever this procedure
is used.
CS_ARRAY_TOO_SMALLV CS_BAD_ARRAY_DESCRIPTIONV
CS_BAD_DATA_LENV CS_BAD_TEMPCHARV
CS_BADTIMEINPUTV CS_BAD_TYPE_CODEV
CS_CONVENTION_NOT_FOUNDV CS_DATAOKV
CS_FAULTV CS_FIELD_TRUNCATEDV
CS_LANGUAGE_NOT_FOUNDV CS_SOFTERRV
cnv_formattimetmp
Prototype
int cnv_formattimetmp( char (*time_ary) [ ], int time_ary_size,
char (*tmp_ary) [ ], int tmp_ary_size,
char (*lang_name) [ ], int lang_name_size,
int *ft_len, char (*ft_ary) [ ], int ft_ary_size );
This procedure may be used with a caller-supplied template to format the time, rather
than one of the existing templates.
tmp_ary is a character array passed to the procedure in which the template used to
format the time is specified. Refer to the MLS Guide for information about creating a
template.
lang_name is a character array passed to the procedure, containing the language used
in formatting the time. If this parameter contains all blanks or zeros, the procedure
uses the hierarchy to determine the language used. Refer to the MLS Guide for
information about determining the valid language names on the system being used
and the explanation of the hierarchy.
ft_len is an integer returned by the procedure, containing the length of the formatted
time.
ft_ary is a character array returned by the procedure, containing the time value
formatted according to the specified template and language.
rslt is an integer that is returned as the value of the procedure, indicating whether an
error occurred during the cnv_formattimetmp procedure. Any value other than
CS_DATAOKV indicates an error. An explanation of the error result values and messages
can be found at the end of this section. Check the procedure result whenever this
procedure is used.
CS_ARRAY_TOO_SMALLV CS_BAD_ARRAY_DESCRIPTIONV
CS_BAD_DATA_LENV CS_BAD_TEMPCHARV
CS_BAD_TEMPLENV CS_BADTIMEINPUTV
CS_DATAOKV CS_FAULTV
CS_FIELD_TRUNCATED CS_LANGUAGE_NOT_FOUNDV
CS_SOFTERRV
cnv_formsize
Prototype
int cnv_formsize( char (*cnv_name) [ ], int cnv_name_size,
int *lpp, int *cpl );
This procedure returns the lines-per-page and characters-per-line values from the
specified convention. Each convention provides values for these items used with
printed output.
cnv_name is a character array passed to the procedure, containing the name of the
convention used to specify the printer form sizes. If this parameter contains all blanks
or zeros, the procedure uses the hierarchy to determine the convention used. Refer to
the MLS Guide for the list of convention names and the explanation of the hierarchy.
lpp is an integer returned by the procedure, containing the number of lines allowed
per page for the specified convention.
rslt is an integer that is returned as the value of the procedure, indicating whether an
error occurred during the cnv_formsize procedure. Any value other than CS_DATAOKV
indicates an error. An explanation of the error result values and messages can be
found at the end of this section. Check the procedure result whenever this procedure
is used.
CS_BAD_ARRAY_DESCRIPTIONV CS_CONVENTION_NOT_FOUNDV
CS_DATAOKV CS_FAULTV
CS_SOFTERRV
cnv_info
Prototype
int cnv_info( int typ, char (*cnv_name) [ ], int cnvname_size,
int *info_len, float (*info_ary) [ ], int info_ary_size );
This procedure returns a description of the specified convention. The definition can be
retrieved from memory or from the *SYSTEM/CONVENTIONS file.
typ is an integer passed to the procedure, indicating the source of the convention
information returned. This information may represent either the convention
information currently in memory or the information stored in the file
*SYSTEM/CONVENTIONS. The following are valid values for typ:
Two copies of convention information reside on the system. One copy is in memory
and is stored in the CENTRALSUPPORT library during initialization. The other copy is on
disk and is stored in the *SYSTEM/CONVENTIONS file.
cnv_name is a character array that contains the name of the convention set for which a
definition is requested. If this parameter contains all blanks or zeros, the procedure
uses the hierarchy to determine the convention used. Refer to the MLS Guide for the
list of convention names and the explanation of the hierarchy.
info_ary is a float array returned by the procedure that contains the definition of the
requested convention. Data stored in info_ary is stored in fields as follows:
The international currency notation field contains the international currency symbol
defined for the convention. The international currency symbol is surrounded by a pair
of matching delimiters that are not part of the symbol. Any blanks inside the delimiters
are significant and are treated as any other character. For example, the international
currency symbol for the ASERIESNATIVE convention is “USD ”; the trailing blank is
significant and the quotation marks are delimiters.
rslt is an integer that is returned as the value of the procedure, indicating whether an
error occurred during the cnv_info procedure. Any value other than CS_DATAOKV
indicates an error. An explanation of the error result values and messages can be
found at the end of this section. Check the procedure result whenever this procedure
is used.
CS_ARRAY_TOO_SMALLV CS_BAD_ARRAY_DESCRIPTIONV
CS_BAD_DATA_LENV CS_CONVENTION_NOT_FOUNDV
CS_DATAOKV CS_FAULTV
CS_INCOMPLETE_DATAV CS_SOFTERRV
cnv_modify
Prototype
int cnv_modify( char (*cnv_name) [ ], int cnv_name_size, float *modmask,
float (*mod_ary) [ ], int mod_ary_size );
Note that this procedure can be used to modify only conventions that have been
created by a user; the system-supplied conventions cannot be modified.
cnv_name is a character array that is passed to the procedure, containing the name of
the convention to be modified. If this parameter contains all blanks or zeros, the
procedure uses the hierarchy to determine the convention used. Refer to the MLS
Guide for the list of convention names and the explanation of the hierarchy.
modmask is a float number that is passed to the procedure. It provides a mask that
indicates the fields modified in the specified convention definition.
The bits in modmask are in the range 0 through 12. Each bit is associated with a unique
field in mod_ary. If the bit is equal to 1, then the data in the corresponding field in
mod_ary is validated and stored in the designated convention definition. Bit 0 in modmask
corresponds to the first field in mod_ary, bit 1 to field 2, and so on.
mod_ary is a float array passed to the procedure, containing the data used to modify
the convention. Data in mod_ary is passed in fields as follows:
The international currency notation field contains the international currency symbol
defined for the convention. The international currency symbol is surrounded by a pair
of matching delimiters that are not part of the symbol. Any blanks inside the delimiters
are significant and are treated as any other character. For example, the international
currency symbol for the ASERIESNATIVE convention is “USD ”; the trailing blank is
significant and the quotation marks are delimiters.
rslt is an integer that is returned as the value of the procedure, indicating whether an
error occurred during the cnv_modify procedure. Any value other than CS_DATAOKV
indicates an error. An explanation of the error result values and messages can be
found at the end of this section. Check the procedure result whenever this procedure
is used.
CS_BAD_ALTFRACDIGITSV CS_BAD_ARRAY_DESCRIPTIONV
CS_BAD_CPLV CS_BAD_DATA_LENV
CS_BAD_FRACDIGITSV CS_BAD_LDATETEMPV
CS_BAD_LPPV CS_BAD_LTIMETEMPV
CS_BAD_MAXDIGITSV CS_BAD_NDATETEMPV
CS_BAD_NTIMETEMPV CS_BAD_MONTEMPV
CS_BAD_NUMTEMPV CS_BAD_SDATETEMPV
CS_CONVENTION_NOT_FOUNDV CS_CNVFILE_NOTPRESENTV
CS_CNV_NOTAVAILV CS_DATAOKV
CS_FAULTV CS_FILE_ACCESS_ERRORV
CS_SOFTERRV
cnv_names
Prototype
int cnv_names( int *total, char (*names_ary) [ ], int names_ary_size );
This procedure returns a list of convention names and the total number of conventions
that are available on the system, including any conventions that are user-defined.
rslt is an integer that is returned as the value of the procedure, indicating whether an
error occurred during the cnv_names procedure. Any value other than CS_DATAOKV
indicates an error. An explanation of the error result values and messages can be
found at the end of this section. Check the procedure result whenever this procedure
is used.
CS_ARRAY_TOO_SMALLV CS_DATAOKV
CS_FAULTV
cnv_symbols
Prototype
int cnv_symbols( char (*cnv_name) [ ], int cnv_name_size, int *total,
int (*symlen_ary) [ ], int symlen_ary_size,
char (*sym_ary) [ ], int sym_ary_size );
This procedure returns a list of numeric and monetary symbols defined for a specified
convention.
symlen_ary and sym_ary are parallel arrays. Each entry in symlen_ary specifies the
length of the symbol (in characters) of the corresponding entry in sym_ary. If an entry
in symlen_ary is zero, it indicates that the symbol is not defined and the corresponding
entry in sym_ary is filled with blanks. If an entry in symlen_ary is not zero, but the
corresponding entry in sym_ary is all blanks, then the number of blanks specified by
the symlen_ary entry constitutes the symbol.
The monetary and numeric symbols defined in the monetary and numeric templates
for a convention are returned in fixed-length fields in symlen_ary. Each field is 12 bytes
long, except where noted.
The following table shows the symbols that are returned in sym_ary and the offset of
the field in which the symbol is returned for the monetary symbols:
The following table shows the symbols that are returned in sym_ary and the offset of
the field in which the symbol is returned for the numeric symbols:
The monetary and numeric groupings each occupy two adjacent fields (24 bytes) in
sym_ary. The monetary and numeric groupings, when present, are character strings
consisting of unsigned integers separated by commas. The integers specify the
number of digits in each group and appear exactly as they are declared in the
monetary and numeric templates, including embedded commas.
The following table shows the index into the symlen_array, which contains the symbol
lengths for the monetary and numeric symbols.
cnv_name is a character array passed to the procedure, containing the name of the
convention used to retrieve the monetary and numeric symbols. If this parameter
contains all blanks or zeros, the procedure uses the hierarchy to determine the
convention to be used. Refer to the MLS Guide for the list of convention names and
the explanation of the hierarchy.
total is an integer returned by the procedure, containing the total number of symbols
returned.
symlen_ary is an int array returned by the procedure, containing the lengths of all
symbols being returned in sym_ary.
sym_ary is a character array returned by the procedure. Each field of the array
contains a symbol defined in the monetary and numeric template for the specified
rslt is an integer that is returned as the value of the procedure, indicating whether an
error occurred during the cnv_symbols procedure. Any value other than CS_DATAOKV
indicates an error. An explanation of the error result values and messages can be
found at the end of this section. Check the procedure result whenever this procedure
is used.
CS_ARRAY_TOO_SMALLV CS_BAD_ARRAY_DESCRIPTIONV
CS_BAD_DATA_LENV CS_CONVENTION_NOT_FOUNDV
CS_DATAOKV CS_FAULTV
CS_INCOMPLETE_DATAV CS_SOFTERRV
cnv_systemdatetime
Prototype
int cnv_systemdatetime( int typ, char (*cnv_name) [ ], int cnv_name_size,
char (*lang_name) [ ], int lang_name_size,
int *date_len, int *sdt_len, char (*sdt_ary) [ ],
int sdt_ary_size );
This procedure obtains the current system date and time and formats them according
to the template retrieved from the specified convention. Date and time components
are translated to the natural language designated in lang_name. The system computes
both the date and time from the result of a single TIME(6) function call. Therefore, the
possibility that the date and time are split across midnight does not exist.
typ is an integer passed to the procedure, indicating one of the following formats is
used when the date is returned:
cnv_name is a character array passed to the procedure, containing the name of the
convention used to edit the date and time value. If this parameter contains all blanks
or zeros, the procedure uses the hierarchy to determine the convention to be used.
Refer to the MLS Guide for the list of convention names and the explanation of the
hierarchy.
lang_name is a character array passed to the procedure, containing the language used
in formatting the date and time value. If this parameter contains all blanks or zeros, the
procedure uses the hierarchy to determine the language used. Refer to the MLS Guide
for information about determining the valid language names on the system being used
and the explanation of the hierarchy.
sdt_len is an integer returned by the procedure that specifies the total length of the
formatted date and/or time being returned.
sdt_ary is a character array returned by the procedure that contains the formatted
date and/or time. The recommended size for this array is 96 characters.
rslt is an integer that is returned as the value of the procedure, indicating whether an
error occurred during the cnv_systemdatetime procedure. Any value other than
CS_DATAOKV indicates an error. An explanation of the error result values and messages
can be found at the end of this section. Check the procedure result whenever this
procedure is used.
CS_ARRAY_TOO_SMALLV CS_BAD_ARRAY_DESCRIPTIONV
CS_BAD_TYPE_CODEV CS_CONVENTION_NOT_FOUNDV
CS_DATAOKV CS_FAULTV
CS_FIELD_TRUNCATEDV CS_INCOMPLETE_DATAV
CS_LANGUAGE_NOT_FOUNDV CS_SOFTERRV
cnv_systemdatetimetmp
Prototype
int cnv_systemdatetimetmp( char (*tmp_ary) [ ], int tmp_ary_size,
char (*lang_name) [ ], int lang_name_size,
int *dtemp_len, int *date_len, int *sdt_len,
char (*sdt_ary) [ ], int sdt_ary_size );
This procedure obtains the system date and time and formats them according to a
template and language supplied by the program. The system obtains the date and time
from a single TIME(6) function call to avoid the possibility of splitting the date and time
across a day boundary.
tmp_ary is a character array passed to the procedure, containing the template, left
justified. If both date and time templates are present, the date template must appear
first.
lang_name is a character array passed to the procedure, containing the language used
in formatting the date and time value. If this parameter contains all blanks or zeros, the
procedure uses the hierarchy to determine the language used. Refer to the MLS Guide
for information about determining the valid language names on the system being used
and the explanation of the hierarchy.
dtemp_len is an integer passed to the procedure, specifying the length of the date
template in tmp_ary. If dtemp_len is zero, there is no date template in tmp_ary. If both a
date and time template are specified, then the date template must appear first in
tmp_ary.
date_len is an integer returned by the procedure that contains the length of the date
portion of the formatted date and time. This parameter is zero if there is no formatted
date in the output. If both the date and time are present in the output, the formatted
date is separated from the formatted time by a blank. The extra character is reflected
in the length of the formatted date.
sdt_len is an integer returned by the procedure that contains the length of the
formatted date and time.
sdt_ary is a character array returned by the procedure, containing the formatted date
and/or time.
rslt is an integer that is returned as the value of the procedure, indicating whether an
error occurred during the cnv_systemdatetimetmp procedure. Any value other than
CS_DATAOKV indicates an error. An explanation of the error result values and messages
can be found at the end of this section. Check the procedure result whenever this
procedure is used.
CS_ARRAY_TOO_SMALLV CS_BAD_ARRAY_DESCRIPTIONV
CS_BAD_DATA_LENV CS_BAD_TEMPCHARV
CS_DATAOKV CS_FAULTV
CS_FIELD_TRUNCATEDV CS_LANGUAGE_NOT_FOUNDV
CS_SOFTERRV
cnv_template
Prototype
int cnv_template( int typ, char (*cnv_name) [ ], int cnvname_size,
int *tmp_len, char (*tmp_ary) [ ], int tmp_ary_size );
This procedure returns the requested type of formatting template retrieved from the
convention that is specified in cnv_name.
cnv_name is a character array passed to the procedure that contains the name of the
convention that is specified. If this parameter contains all blanks or zeros, the
procedure uses the hierarchy to determine the convention to be used. Refer to the
MLS Guide for the list of convention names and the explanation of the hierarchy.
tmp_ary is a character array returned by the procedure that contains the requested
template.
rslt is an integer that is returned as the value of the procedure, indicating whether an
error occurred during the cnv_template procedure. Any value other than CS_DATAOKV
indicates an error. An explanation of the error result values and messages can be
found at the end of this section. Check the procedure result whenever this procedure
is used.
CS_ARRAY_TOO_SMALLV CS_BAD_ARRAY_DESCRIPTIONV
CS_BAD_DATA_LENV CS_BAD_TYPE_CODEV
CS_CONVENTION_NOT_FOUNDV CS_DATAOKV
CS_FAULTV CS_SOFTERRV
cnv_validatename
Prototype
int cnv_validatename( char (*cnv_name) [ ], int cnv_name_size );
This procedure returns a value in rslt that indicates whether or not the convention
name specified in cnv_name is currently defined on the system.
This procedure can be used to ensure that a convention used as an input parameter
exists on the system on which the program is running.
cnv_name is a character array passed to the procedure, containing the name of the
convention that is checked. If this parameter contains all blanks or zeros, the
procedure uses the hierarchy to determine the convention to be used. Refer to the
MLS Guide for the list of convention names and the explanation of the hierarchy.
rslt is an integer that is returned as the value of the procedure, indicating the validity
of the designated convention. The possible values are:
compare_text_using_order_info
Prototype
int compare_text_using_order_info( char (*text1) [ ], int text1_size,
int text1_start, char (*text2) [ ],
int text2_size, int text2_start,
int compare_len, int rltn,
int ord_type, float (*order_ary) [ ],
int order_ary_size );
This procedure compares two strings using the ordering information returned by
vsnordering_info. One of the following methods of comparison can be chosen:
• Equivalent comparison
This is based on the ordering sequence values of characters
• Logical comparison
This is based on the ordering sequence values and the priority sequence values of
characters.
text1_start is an integer containing the starting offset in array text1 of the string to
be compared.
text2_start is an integer containing the starting offset in array text2 of the string to
be compared.
order_ary is a float array passed to the procedure, containing the ordering information
used to compare the strings. Ordering information should be obtained using the
vsnordering_info procedure and used as input to this procedure. The recommended
size of this array is 256 words.
rslt is an integer that is returned as the value of the procedure, indicating whether an
error occurred during the compare_text_using_order_info procedure. Any value other
than CS_DATAOKV indicates an error. An explanation of the error result values and
messages can be found at the end of this section. Check the procedure result
whenever this procedure is used.
CS_BAD_ARRAY_DESCRIPTIONV CS_BAD_DATA_LENV
CS_BAD_TEXT_PARAMV CS_BAD_TYPE_CODEV
CS_DATAOKV CS_FAULTV
CS_SOFTERRV
get_cs_msg
Prototype
int get_cs_msg( int msg_num, char (*lang) [ ], int lang_size,
char (*msg) [ ], int msg_size, int *msg_len );
This procedure returns error message text specified by the error number in num and in
the language designated in lang_name. The desired length of the return message can
be specified in the msg_len parameter. If the returned text is shorter than the length
specified, the procedure pads the remaining portion of the record with blanks.
• The header, which comprises the first 80 characters of the message returned in
the msg parameter. The text in the header provides the error number and a concise
text description.
• The short description, which comprises the second 80 characters of the message
returned in the msg parameter. If space is a consideration, the description of the
error can be limited to the header and short description.
• The long description which comprises the remaining characters of the message
returned in the msg parameter. The long description provides a complete
explanation of the error that was returned.
Part or all of the message text can be returned. Note that the header part starts at
msg[0], the short description at msg[80], and the long description at msg[160]. For
example, if msg_len is specified to be equal to 200 characters, then msg contains the
header message padded with blanks to 80, if necessary, followed by the short
description padded with blanks to 160, if necessary, followed by 40 characters of the
long description.
The requested message length should be at least 80 characters, equal to one line of
text. Anything less results in an incomplete message. Recommended message
lengths are 80, 160, or 999. The value of 999 causes the entire message to be
returned.
This procedure can be used to retrieve the text of an error message so that it can be
displayed by a program.
msg_num is an integer passed to the procedure, specifying an error that was returned
by a library procedure. The error numbers and their meanings are listed at the end of
this appendix.
lang is a character array passed to the procedure, specifying the language used for the
message text. If this parameter contains all blanks or zeros, the procedure uses the
default language hierarchy to determine the language used. Refer to the MLS Guide
for details about determining the valid language names on the system and for the
explanation of the hierarchy.
msg is a character array returned by the procedure, containing the message text
associated with the error number specified.
rslt is an integer that is returned as the value of the procedure, indicating whether an
error occurred during the get_cs_msg procedure. Any value other than CS_DATAOKV
indicates an error. An explanation of the error result values and messages can be
found at the end of this section. Check the procedure result whenever this procedure
is used.
CS_ARRAY_TOO_SMALLV CS_BAD_ARRAY_DESCRIPTIONV
CS_DATAOKV CS_NO_NAME_FOUNDV
CS_SOFTERRV
inspect_text_using_tset
Prototype
int inspect_text_using_tset( char (*text) [ ], int text_size,
int text_start, float (*tset_ary) [ ],
int tset_ary_size, int inspect_len,
int flag, int *scanned_chars );
This procedure compares the input text to an ALGOL-type truthset returned by the
vsntruthset procedure to determine whether all the characters in the text are in the
truthset.
text is a character array passed to the procedure, containing the text to be inspected.
tset_ary is a float array passed to the procedure, containing the truthset array. The
recommended tset_ary length is eight words. The truthset array should be obtained
using the vsn_truthset procedure and used as input to this procedure.
rslt is an integer that is returned as the value of the procedure, indicating whether an
error occurred during the inspect_text_using_tset procedure. Any value other than
CS_DATAOKV indicates an error. An explanation of the error result values and messages
can be found at the end of this section. Check the procedure result whenever this
procedure is used.
CS_DATAOKV CS_FAULTV
CS_SOFTERRV CS_BAD_DATALENV
CS_BAD_ARRAY_DESCRIPTIONV CS_BAD_FLAGV
mcp_bound_languages
Prototype
int mcp_bound_languages( int *total, char (*languages_ary) [ ],
int *languages_ary_size );
This procedure returns the names of the languages that are currently bound to the
MCP. For information about binding a language to the operating system, refer to the
MLS Guide.
rslt is an integer that is returned as the value of the procedure, indicating whether an
error occurred during the mcp_bound_languages procedure. Any value other than
CS_DATAOKV indicates an error. An explanation of the error result values and messages
can be found at the end of this section. Check the procedure result whenever this
procedure is used.
CS_ARRAY_TOO_SMALLV CS_BAD_ARRAY_DESCRIPTIONV
CS_DATAOKV CS_FAULTV
CS_SOFTERRV
trans_text_using_ttable
Prototype
int trans_text_using_ttable( char (*source) [ ], int source_size,
int source_start, char (*dest) [ ],
int dest_size, int dest_start,
float (*ttable_ary) [ ],
int ttable_ary_size, int trans_len );
This procedure uses the translation table obtained using the vsntranstable procedure
to translate data. The type of table used determines the type of translation done. All
translation is a one-to-one mapping of the characters.
dest is an array returned by the procedure, containing the location of the translated
text. This array should normally be defined as the size of the source array.
dest_start is an integer passed to the procedure, containing the starting offset of the
location where translated text is to be placed.
ttable_ary is an array passed to the procedure, containing the translation table array.
The recommended size of this array is 64 words.
rslt is an integer that is returned as the value of the procedure, indicating whether an
error occurred during the trans_text_using_ttable procedure. Any value other than
CS_DATAOKV indicates an error. An explanation of the error result values and messages
can be found at the end of this section. Check the procedure result whenever this
procedure is used.
CS_ARRAY_TOO_SMALLV CS_BAD_ARRAY_DESCRIPTIONV
CS_BAD_DATA_LENV CS_DATAOKV
CS_FAULTV CS_SOFTERRV
validate_name_return_num
Prototype
int validate_name_return_num( int ccsvsn_type, char (*name_ary) [ ],
int name_ary_size, int *num );
This procedure can be used to obtain the ccsversion number needed as a parameter in
other CENTRALSUPPORT library procedures.
name_ary is a character array passed to the procedure, containing the coded character
set or ccsversion name for which a number is being requested. The name can be up to
17 characters long. If this parameter contains zeros or blanks, the procedure uses the
hierarchy to determine the ccsversion or character set used. If there is no system
default, the procedure returns an error in rslt. Maximum array size is 17 characters.
num is an integer returned by the procedure, containing the specified character set or
ccsversion number.
rslt is an integer that is returned as the value of the procedure, indicating whether an
error occurred during the validate_name_return_num procedure. Any value other than
CS_DATAOKV indicates an error. An explanation of the error result values and messages
can be found at the end of this section. Check the procedure result whenever this
procedure is used.
CS_BAD_ARRAY_DESCRIPTIONV CS_BAD_DATA_LENV
CS_BAD_TYPE_CODEV CS_DATAOKV
CS_FAULTV CS_NO_NAME_FOUNDV
CS_SOFTERRV
validate_num_return_name
Prototype
int validate_num_return_name( int ccsvsn_type, int num,
char (*name_ary) [ ], int name_ary_size );
This procedure can be used, for example, to display to the application user the name
of the coded character set or the ccsversion being used.
num is an integer passed to the procedure, containing the number for the character set
or ccsversion for which the name is being requested. The value
CS_VSN_NOT_SPECIFIEDV indicates that the hierarchy should be used to determine the
version number. Refer to the MLS Guide for more information about the hierarchy.
name_ary is a character array returned by the procedure, containing the character set
or ccsversion name. The maximum length of the name and recommended array size is
17 characters.
rslt is an integer that is returned as the value of the procedure, indicating whether an
error occurred during the validate_num_return_name procedure. Any value other than
CS_DATAOKV indicates an error. An explanation of the error result values and messages
can be found at the end of this section. Check the procedure result whenever this
procedure is used.
CS_ARRAY_TOO_SMALLV CS_BAD_ARRAY_DESCRIPTIONV
CS_BAD_TYPE_CODEV CS_DATAOKV
CS_FAULTV CS_NO_NUM_FOUNDV
CS_SOFTERRV
vsncompare_text
Prototype
int vsncompare_text( int vsn_num,
char (*text1) [ ], int text1_size, int text1_start,
char (*text2) [ ], int text2_size, int text2_start,
int compare_len, int rltn, int ord_type );
This procedure compares two strings, text1 and text2, using a binary, equivalent, or
logical comparison, specified in ord_type. The starting position for the comparison is
specified for each string along with the type of comparison to be performed.
• If the number is greater than or equal to zero, then the number designates a
ccsversion.
• If the number is CS_VSN_NOT_SPECIFIEDV, the procedure uses the system default
ccsversion. If the system default ccsversion is not available, the procedure returns
an error in rslt.
text1 is a character array passed to the procedure, containing the first text to be
compared.
text2 is a character array passed to the procedure, containing the second text to be
compared.
rslt is an integer that is returned as the value of the procedure, indicating whether an
error occurred during the vsncompare_text procedure. Any value other than CS_DATAOKV
indicates an error. An explanation of the error result values and messages can be
found at the end of this section. Check the procedure result whenever this procedure
is used.
CS_BAD_ARRAY_DESCRIPTIONV CS_BAD_DATA_LENV
CS_BAD_FLAGV CS_BAD_TYPE_CODEV
CS_DATAOKV CS_FALSEV
CS_FAULTV CS_FILE_ACCESS_ERRORV
CS_NO_NAME_FOUNDV CS_SOFTERRV
vsnescapement
Prototype
int vsnescapement( int vsn_num, char (*source) [ ], int source_size,
int source_start, char (*dest) [ ], int dest_size,
int *trans_len );
This procedure takes the input text and rearranges it according to the escapement
rules of the ccsversion. Both the character advance direction and the character
escapement direction are used. If the character advance direction is positive, then the
starting position for the text is the leftmost position in the dest parameter. If the
character advance direction is negative, then the starting position for the text is the
rightmost position in the dest parameter. From that point on, the character advance
direction value and the character escapement direction values, in combination, control
where each character should be placed in relation to the previous character.
Value Meaning
Greater than or equal to 0 Specifies a ccsversion. The numbers of the
ccsversions are listed in the MLS Guide.
CS_VSN_NOT_SPECIFIEDV Specifies the system default ccsversion. If
the system default ccsversion is not
available, an error is returned.
dest is a character array returned by the procedure, containing the resulting text after
the escapement rules have been applied.
rslt is an integer that is returned as the value of the procedure, indicating whether an
error occurred during the vsnescapement procedure. Any value other than CS_DATAOKV
indicates an error. An explanation of the error result values and messages can be
found at the end of this section. Check the procedure result whenever this procedure
is used.
CS_BAD_ARRAY_DESCRIPTIONV CS_BAD_DATA_LENV
CS_DATAOKV CS_FAULTV
CS_FILE_ACCESS_ERRORV CS_NO_NUM_FOUNDV
CS_SOFTERRV
vsngetorderingfor_one_text
Prototype
int vsngetorderingfor_one_text(int vsn_num, char (*source) [ ],
int source_size, int source_start,
int itext_len, char (*dest) [ ],
int dest_size,
int dest_start, int max_osvs,
int total_storage, int ord_type );
This procedure returns the ordering information for the input text, which determines
how the input text is collated. It includes the ordering and priority sequence values of
the characters and any substitution of characters made when the input text is sorted.
One of the following types of ordering information can be chosen:
source is a character array passed to the procedure, containing the text for which the
ordering information is requested.
itext_len is an integer passed to the procedure, containing the length of the source
text.
dest is a character array returned the procedure, containing the ordering information
for the source text.
dest_start is an integer designating the starting offset at which the result values are
to be placed.
The value of max_osvs should be at least the length of the input text, but it may need
to be greater to allow for substitution. The maximum substitution length is three
bytes; therefore, to allow for substitution for every character, the value of max_osvs is
as follows:
If the number of ordering sequence values returned is less than max_osvs, then the
array is padded with the OSV for blank.
When the ordering information is returned by the procedure, all the OSVs are listed
first, followed by all the PSVs.
rslt is an integer that is returned as the value of the procedure, indicating whether an
error occurred during the vsngetorderingfor_one_text procedure. Any value other
than CS_DATAOKV indicates an error. An explanation of the error result values and
messages can be found at the end of this section. Check the procedure result
whenever this procedure is used.
CS_ARRAY_TOO_SMALLV CS_BAD_ARRAY_DESCRIPTIONV
CS_BAD_DATA_LENV CS_BAD_TEXT_PARAMV
CS_BAD_TYPE_CODEV CS_DATAOKV
CS_FAULTV CS_FILE_ACCESS_ERRORV
CS_NO_NUM_FOUNDV CS_SOFTERRV
vsninfo
Prototype
int vsninfo( int vsn_num, float (*vsn_ary) [ ], int vsn_ary_size );
• The number of the base character set to which the ccsversion applies
• The escapement information
• The space characters used for the ccsversion
• The array sizes required by the ccsversion translation tables and sets
vsn_num is an integer passed to the procedure, containing the ccsversion number for
which information is requested.
rslt is an integer that is returned as the value of the procedure, indicating whether an
error occurred during the vsninfo procedure. Any value other than CS_DATAOKV
indicates an error. An explanation of the error result values and messages can be
found at the end of this section. Check the procedure result whenever this procedure
is used.
CS_ARRAY_TOO_SMALLV CS_BAD_ARRAY_DESCRIPTIONV
CS_DATAOKV CS_FAULTV
CS_FILE_ACCESS_ERRORV CS_NO_NUM_FOUNDV
CS_SOFTERRV
vsninspect_text
Prototype
int vsninspect_text( int vsn_num, char (*text) [ ], int text_size,
int text_start, int inspect_len, int tset_type,
int flag, int *scanned_chars );
characters that had been scanned when the criteria specified in the flag parameter
were met. If scanned_chars is equal to inspect_len, then all the characters were
searched, but none met the criteria. Otherwise, adding the text_start value to the
rslt value gives the location of the character, from the start of the array, that met the
search criteria.
Value Meaning
Greater than or equal to 0 Specifies a ccsversion. The numbers of the
ccsversions are listed in the MLS Guide.
CS_VSN_NOT_SPECIFIEDV Specifies the system default ccsversion. If
the system default ccsversion is not
available, an error is returned.
text is a character array passed to the procedure. The array is then searched using the
requested truthset.
tset_type is an integer passed to the procedure, indicating the type of truthset used
for the search. The following are the values allowed for tset_type and their meanings:
Refer to the MLS Guide for more information about truthsets and their meanings.
flag is an integer passed to the procedure, indicating the type of search to perform.
The values allowed for flag and their meanings are as follows:
rslt is an integer that is returned as the value of the procedure, indicating whether an
error occurred during the vsninspect_text procedure. Any value other than CS_DATAOKV
indicates an error. An explanation of the error result values and messages can be
found at the end of this section. Check the procedure result whenever this procedure
is used.
CS_ARRAY_TOO_SMALLV CS_BAD_ARRAY_DESCRIPTIONV
CS_BAD_FLAGV CS_BAD_TYPE_CODEV
CS_DATA_NOT_FOUNDV CS_DATAOKV
CS_FAULTV CS_FILE_ACCESS_ERRORV
CS_NO_NUM_FOUNDV CS_SOFTERRV
vsnordering_info
Prototype
This procedure returns the ordering information for a designated ccsversion. The
ordering information determines the way in which data is collated for the ccsversion. It
includes the ordering and priority sequence values of the characters and any
substitution of characters to be made when the designated ccsversion ordering is
applied to a string of text.
The table obtained with this procedure can be used with the
compare_text_using_order_info procedure. Using this combination of procedures in
place of a general call to the vsncompare_text procedure can improve the
performance of an application program that performs a high volume of translations.
rslt is an integer that is returned as the value of the procedure, indicating whether an
error occurred during the vsnordering_info procedure. Any value other than
CS_DATAOKV indicates an error. An explanation of the error result values and messages
can be found at the end of this section. Check the procedure result whenever this
procedure is used.
CS_ARRAY_TOO_SMALLV CS_BAD_ARRAY_DESCRIPTIONV
CS_DATAOKV CS_DATA_NOT_FOUNDV
CS_FAULTV CS_FILE_ACCESS_ERRORV
CS_NO_NUM_FOUNDV CS_SOFTERRV
vsntranstable
Prototype
int vsntranstable( int vsn_num, int ttable_type, float (*ttable_ary) [ ],
int ttable_ary_size );
This procedure returns a translation table for a designated ccsversion. The type of
translation table requested depends on the task to be performed.
Refer to the MLS Guide for more information about translation tables.
The translation table from vsntranstable can be retained in a user array so that it
does not have to be retrieved each time it is used. This translation table can then be
passed as a parameter to trans_text_using_ttable.
ttable_ary is an array returned from the procedure, containing the translation table.
The size of this array must be at least 64 words.
rslt is an integer that is returned as the value of the procedure, indicating whether an
error occurred during the vsntranstable procedure. Any value other than CS_DATAOKV
indicates an error. An explanation of the error result values and messages can be
found at the end of this section. Check the procedure result whenever this procedure
is used.
CS_ARRAY_TOO_SMALLV CS_BAD_ARRAY_DESCRIPTIONV
CS_BAD_TYPE_CODEV CS_DATAOKV
CS_DATA_NOT_FOUNDV CS_FAULTV
CS_FILE_ACCESS_ERRORV CS_NO_NUM_FOUNDV
CS_SOFTERRV
vsntrans_text
Prototype
int vsntrans_text( int vsn_num, char (*source) [ ], int source_size,
int source_start, char (*dest) [ ], int dest_size,
int dest_start, int trans_len, int ttable_type );
This procedure applies a translation table, specified by ttable_type, to the source text
and places the result into dest. The same array can be used for both the source and
destination text.
Value Meaning
Greater than or equal to 0 Use the specified ccsversion number.
CS_VSN_NOT_SPECIFIEDV Use the system default ccsversion. If the system
default ccsversion is not available, an error is
returned.
source is a character array passed to the procedure, containing the data to translate.
dest is a character array returned by the procedure, containing the translated text.
ttable_type is an integer that contains the type of translation requested. The allowed
values for ttable_type and their meanings are as follows:
rslt is an integer that is returned as the value of the procedure, indicating whether an
error occurred during the vsntrans_text procedure. Any value other than CS_DATAOKV
indicates an error. An explanation of the error result values and messages can be
found at the end of this section. Check the procedure result whenever this procedure
is used.
CS_ARRAY_TOO_SMALLV CS_BAD_ARRAY_DESCRIPTIONV
CS_BAD_DATA_LENV CS_BAD_TYPE_CODEV
CS_DATA_NOT_FOUNDV CS_DATAOKV
CS_FAULTV CS_FILE_ACCESS_ERRORV
CS_NO_NUM_FOUNDV CS_SOFTERRV
vsntruthset
Prototype
int vsntruthset( int vsn_num, int tset_type, float (*tset_ary) [ ],
int tset_ary_size );
This procedure returns a truthset for the designated ccsversion. The truthset contains
the characters in a given data class for the ccsversion and are available for the
following data classes:
• Alphabetic
• Numeric
• Presentation (These are the characters that can be displayed or printed on a
presentation device.)
• Spaces
• Lowercase
• Uppercase
The truthset table from vsntruthset can be retained in a user array so that it does not
have to be retrieved each time it is to be used. This truthset table can then be passed
as a parameter to inspect_text_using_tset.
The values allowed for vsn_num and the meanings of the values are as follows:
Value Meaning
Greater than or equal to 0 Use the specified ccsversion number.
CS_VSN_NOT_SPECIFIEDV Use the system default ccsversion. If the system
default ccsversion is not available, an error is returned.
tset_ary is an array returned from the procedure, containing the truthset table. The
recommended size of this array is eight words.
rslt is an integer that is returned as the value of the procedure, indicating whether an
error occurred during the vsntruthset procedure. Any value other than CS_DATAOKV
indicates an error. An explanation of the error result values and messages can be
found at the end of this section. Check the procedure result whenever this procedure
is used.
CS_DATAOKV CS_FAULTV
CS_ARRAY_TOO_SMALLV CS_BAD_ARRAY_DESCRIPTIONV
CS_NO_NUM_FOUNDV CS_BAD_TYPE_CODEV
The range 1000 through 1999 consists of error messages caused by a software error.
Values from 2000 through 2999 contain error messages in which the caller passed
invalid data to a procedure, but the CENTRALSUPPORT library was able to return some
valid data.
Values from 3000 through 3999 contain error messages in which the caller passed
invalid data to a CENTRALSUPPORT procedure and the CENTRALSUPPORT library was
unable to return any valid data.
Values from 4000 through 4999 contain error messages in which the caller passed
data for which the CENTRALSUPPORT library could find no return information. The
CENTRALSUPPORT library completed the request, but no data was returned.
Internationalization Errors
Table E-1 lists the possible error results, their values, and their meaning.
54 066 36 6 Six
55 067 37 7 Seven
56 070 38 8 Eight
57 071 39 9 Nine
58 072 3A : Colon
59 073 3B ; Semicolon
60 074 3C < Less Than
61 075 3D = Equal
62 076 3E > Greater Than
63 077 3F ? Question Mark
64 100 40 @ At Sign
65 101 41 A Uppercase A
66 102 42 B Uppercase B
67 103 43 C Uppercase C
68 104 44 D Uppercase D
69 105 45 E Uppercase E
70 106 46 F Uppercase F
71 107 47 G Uppercase G
72 110 48 H Uppercase H
73 111 49 I Uppercase I
74 112 4A L Uppercase J
75 113 4B K Uppercase K
76 114 4C L Uppercase L
77 115 4D M Uppercase M
78 116 4E N Uppercase N
79 117 4F O Uppercase O
80 120 50 P Uppercase P
81 121 51 Q Uppercase Q
82 122 52 R Uppercase R
83 123 53 S Uppercase S
84 124 54 T Uppercase T
85 125 55 U Uppercase U
86 126 56 V Uppercase V
87 127 57 W Uppercase W
88 130 58 X Uppercase X
89 131 59 Y Uppercase Y
90 132 5A Z Uppercase Z
91 133 5B [ Left Bracket
92 134 5C \ Backslash
93 135 5D ] Right Bracket
94 136 5E ^ Not Sign
95 137 5F _ Underscore
96 140 60 ` Grave Accent
97 141 61 a Lowercase a
98 142 62 b Lowercase b
99 143 63 c Lowercase c
100 144 64 d Lowercase d
101 145 65 e Lowercase e
102 146 66 f Lowercase f
103 147 67 g Lowercase g
104 150 68 h Lowercase h
105 151 69 i Lowercase i
106 152 6A j Lowercase j
107 153 6B k Lowercase k
108 154 6C l Lowercase l
109 155 6D m Lowercase m
110 156 6E n Lowercase n
111 157 6F o Lowercase o
112 160 70 p Lowercase p
113 161 71 q Lowercase q
114 162 72 r Lowercase r
115 163 73 s Lowercase s
116 164 74 t Lowercase t
117 165 75 u Lowercase u
Lexical Grammar
Tokens
token:
constant
identifier
keyword
operator
punctuator
string-literal
Keywords
keyword: one of
asm else long switch
auto enum __near typedef
break extern register union
case __far return unsigned
char float short __user_lock__
const for signed __user_unlock__
continue goto sizeof void
default if __stack_number__ volatile
do inline static while
double int struct
Identifiers
identifier:
identifier digit
identifier nondigit
nondigit
digit: one of
0 1 2 3 4 5 6 7 8 9
nondigit: one of
a b c d e f g h i j k l m
n o p q r s t u v w x y z
A B C D E F G H I J K L M
N O P Q R S T U V W X Y Z
Constants
constants:
character-constant
enumeration-constant
floating-point constant
integer-constant
character-constant:
’c-char-sequence’
L’c-char-sequence’
c-char:
any character in the source character set, except the
single-quote (’), backslash (\), or newline character
escape-sequence
c-char-sequence:
c-char
c-char-sequence c-char
decimal-constant:
nonzero-digit
decimal-constant digit
digit-sequence:
digit
digit-sequence digit
enumeration-constant:
identifier
escape-sequence: one of
\ escape-sequence-character
\ octal-digitopt octal-digitopt octal-digit
\x hexadecimal-code
escape-sequence-character: one of
’ " ? \ a b f n r t v
exponent-part:
e signopt digit-sequence
E signopt digit-sequence
floating-point constant:
fractional-constant exponent-partopt floating-suffixopt
digit-sequence exponent-part floating-suffixopt
floating-suffix: one of
f l F L
fractional-constant:
digit-sequenceopt . digit-sequence
digit-sequence .
hexadecimal-code: one of
hexadecimal-codeopt hexadecimal-digit
hexadecimal-constant:
Ox hexadecimal-digit
OX hexadecimal-digit
hexadecimal-constant hexadecimal-digit
hexadecimal-digit: one of
O 1 2 3 4 5 6 7 8 9
a b c d e f
A B C D E F
integer-constant:
decimal-constant integer-suffixopt
octal-constant integer-suffixopt
hexadecimal-constant integer-suffixopt
integer-suffix:
unsigned-suffix long-suffixopt
long-suffix unsigned-suffixopt
long-suffix: one of
l L
nonzero-digit: one of
1 2 3 4 5 6 7 8 9
octal-constant:
O
octal-constant octal-digit
octal-digit: one of
0 1 2 3 4 5 6 7
sign: one of
+ -
unsigned-suffix: one of
u U
String Literals
string-constant:
"s-char-sequenceopt"
L"s-char-sequenceopt"
s-char:
any character in the source character set, except the
double-quote ("), backslash (\), or newline character
escape-sequence
s-char-sequence:
s-char
s-char-sequence s-char
Operators
operator: one of
[ ] ( ) . ->
++ -- & * + - ~ ! sizeof
== != ^ | && || ? :
= *= /= %= += -= <<= >>=
&= ^= |= , # ##
Punctuators
punctuator: one of
[ ] ( ) { } * , : = ; ... #
AND-expression:
equality-expression
AND-expression & equality-expression
argument-expression-list:
assignment-expression
argument-expression-list , assignment-expression
assignment-expression:
conditional-expression
unary-expression assignment-operator assignment-expression
assignment-operator:
= *= /= %= += -= <<= >>= &= ^= |=
cast-expression:
unary-expression
( type-name ) cast-expression
conditional-expression:
logical-OR-expression
logical-OR-expression ? expression : conditional-expression
constant-expression:
conditional-expression
equality-expression:
relational-expression
equality-expression == relational-expression
equality-expression != relational-expression
exclusive-OR-expression:
AND-expression
exclusive-OR-expression ^ AND-expression
expression:
assignment-expression
expression , assignment-expression
inclusive-OR-expression:
exclusive-OR-expression
inclusive-OR-expression | exclusive-OR-expression
logical-AND-expression:
inclusive-OR-expression
logical-AND-expression && inclusive-OR-expression
logical-OR-expression:
logical-AND-expression
logical-OR-expression || logical-AND-expression
multiplicative-expression:
cast-expression
multiplicative-expression * cast-expression
multiplicative-expression / cast-expression
multiplicative-expression % cast-expression
postfix-expression:
primary-expression
postfix-expression [ expression ]
postfix-expression ( argument-expression-listopt )
postfix-expression . identifier
postfix-expression -> identifier
postfix-expression ++
postfix-expression --
primary-expression:
constant
identifier
string-literal
( expression )
relational-expression:
shift-expression
relational-expression < shift-expression
relational-expression > shift-expression
relational-expression <= shift-expression
relational-expression >= shift-expression
shift-expression:
additive-expression
shift-expression << additive-expression
shift-expression >> additive-expression
unary-expression:
postfix-expression
sizeof unary-expression
sizeof( type-name )
unary-operator cast-expression
++ unary-expression
-- unary-expression
unary-operator: one of
& * + - ~ !
Declarations
declaration-specifiers:
storage-class-specifier declaration-specifiersopt
type-specifier declaration-specifiersopt
fct-specifier declaration-specifiersopt
declarator:
pointeropt direct-declarator
direct-abstract-declarator:
( abstract-declarator )
direct-abstract-declaratoropt [ constant-expressionopt ]
direct-abstract-declaratoropt ( parameter-type-listopt )
direct-declarator:
identifier
( declarator )
direct-declarator [ constant-expressionopt ]
direct-declarator ( identifier-listopt )
direct-declarator ( parameter-type-list )
enumerator:
enumeration-constant
enumeration-constant = constant-expression
enumerator-list:
enumerator
enumerator-list , enumerator
enum-specifier:
enum identifieropt { enumeration-list }
enum identifier
identifier-list:
identifier
identifier-list , identifier
initializer:
assignment-expression
{ initializer-list }
{ initializer-list , }
initializer-list:
initializer
initializer-list , initializer
init-declarator:
declarator
declarator = initializer
init-declarator-list:
init-declarator
init-declarator-list , init-declarator
parameter-declaration:
declaration-specifiers declarator
declaration-specifiers abstract-declaratoropt
parameter-list:
parameter-declaration
parameter-list ,
parameter-declaration
parameter-type-list:
parameter-list
parameter-list , ...
pointer
*type-specifier-listopt
*type-specifier-listopt pointer
storage-class-specifier:
asm
auto
extern
register
static
typedef
fct-specifier:
inline
struct-declaration:
type-specifier-list struct-declarator-list ;
struct-declaration-list:
struct-declaration
struct-declaration-list struct-declaration
struct-declarator:
declarator
declaratoropt : constant-expression
struct-declarator-list:
struct-declarator
struct-declarator-list , struct-declarator
struct-or-union:
struct
union
struct-or-union-specifier:
struct-or-union identifieropt { struct-declaration-list }
struct-or-union identifier
typedef-name:
identifier
type-name:
type-specifier-list abstract-declaratoropt
type-specifier:
char
const
double
enum-specifier
__far
float
int
long
__near
short
signed
struct-or-union-specifier
typedef-name
unsigned
void
volatile
type-specifier-list:
type-specifier
type-specifier-list type-specifier
Statements
statement:
compound-statement
control-statement
expression-statement
iteration-statement
jump-statement
labeled-statement
compound-statement:
{ declaration-listopt statement-listopt }
control-statement:
if ( expression ) statement
if ( expression ) statement else statement
switch ( expression ) statement
declaration-list:
declaration
declaration-list declaration
expression-statement:
expressionopt ;
iteration-statement:
while ( expression ) statement
do statement while ( expression ) ;
for ( expressionopt ; expressionopt ; expressionopt ) statement
jump-statement:
break ;
continue ;
goto identifier ;
return expressionopt;
labeled-statement:
identifier: statement
case constant-expression : statement
default : state ment
statement-list:
statement
statement-list statement
External Definitions
external-definition:
function-definition
declaration
linkage-specification
file:
external-definition
file external-definition
function-body:
declaration-listopt compound-statement
function-definition:
declaration-specifiersopt declarator function-body
linkage-specification:
extern string-literal { declaration-list }
extern string-literal declaration
Preprocessing Directives
control-line:
#define identifier replacement-list newline
#define identifier lparen identifier-listopt)replacement-list newline
#error pp-tokensopt newline
#include pp-tokens library-linkageopt newline
#line pp-tokens newline
#newline
#pragma pp-tokensopt newline
#undef identifier newline
elif-group:
#elif constant-expression newline groupopt
elif-groups:
elif-group
elif-groups elif-group
else-group:
#else newline groupopt
endif-line:
#endif newline
group:
group-part
group group-part
group-part:
pp-tokensopt newline
if-section
control-line
header-name:
<h-char-sequence>
"q-char-sequence"
h-char:
any character in the source character set, except the newline
character and >
h-char-sequence:
h-char
h-char-sequence h-char
if-group:
#if constant-expression newline groupopt
#ifdef identifier newline groupopt
#ifndef identifier newline groupopt
if-section:
if-group elif-groupsopt else-groupopt endif-line
lparen:
the left-parenthesis character without preceding whitespace
newline:
the newline character
pp-number:
digit
. digit
pp-number digit
pp-number non-digit
pp-number e sign
pp-number E sign
pp-number .
pp-tokens:
preprocessing-token
pp-tokens preprocessing-token
preprocessing-file:
groupopt
preprocessing-token:
character-constant
header-name /* only within the #include directive */
identifier
keyword
operator
pp-number
punctuator
string-literal
each non-whitespace character that cannot be one of the above
q-char:
any character in the source character set, except the newline character
and "
q-char-sequence:
q-char
q-char-sequence q-char
replacement-list:
pp-tokensopt
library-linkage:
(library-attributes)
library-attributes:
bytitle = string-literal , intname = string-literal
byfunction = string-literal , intname = string-literal
byinitiator , intname = string-literal
Header Summary
<alloc.h>—Memory Management
_far
_HEAPBADBLK
_HEAPBADHDR
_HEAPBADPTR
_HEAPBADSIZE
_HEAPEMPTY
_HEAPEND
_HEAPFULL
_heapinfo
_HEAPNILPTR
_HEAPOK
_HEAPSHMSEG
_near
NULL
size_t
int _fheapchk(void);
int _fheapset(char ch);
int _fheapwalk(struct _heapinfo *info);
int FP_OFF(void _far *ptr);
int FP_SEG(void _far *ptr);
int _heapchk(void);
int _heapset(char ch);
int _heapwalk(struct _heapinfo *info);
int _nheapchk(void);
int _nheapset(char ch);
<assert.h>—Diagnostics
NDEBUG
<ctype.h>—Character Handling
int isalnum(int c);
int isalpha(int c);
int iscntrl(int c);
int isdigit(int c);
int isgraph(int c);
int islower(int c);
int isprint(int c);
int ispunct(int c);
int isspace(int c);
int isupper(int c);
int isxdigit(int c);
int tolower(int c);
int toupper(int c);
<errno.h>—Errors
E2BIG
_E2BIG
EACCES
_EACCES
EAGAIN
_EAGAIN
EASSERT
_EASSERT
EATTRERR
_EATTRERR
EATTRLISTERR
_EATTRLISTERR
EATTRO
_EATTRO
EBADF
_EBADF
EBADMERGEINPUTS
_EBADMERGEINPUTS
EBADMSG
_EBADMSG
_EBADSIG
EBADSORTRECLEN
_EBADSORTRECLEN
EBUSY
_EBUSY
ECANCELED
_ECANCELED
ECHILD
_ECHILD
EDATAERR
_EDATAERR
EDEADLK
_EDEADLK
EDOM
_EDOM
EENDOFFILEERR
_EENDOFFILEERR
EEXIST
_EEXIST
EFAULT
_EFAULT
EFBIG
_EFBIG
EFILECLOSEERR
_EFILECLOSEERR
EFILENOTAVAIL
_EFILENOTAVAIL
EFILEOPENERR
_EFILEOPENERR
EFILEPOSREQ
_EFILEPOSREO
EFILERO
_EFILERO
EFILEWO
_EFILEWO
EFTELLTOOLARGE
_EFTELLTOOLARGE
EHEAPERR
_EHEAPERR
EHEAPFULL
_EHEAPFULL
EIDRM
_EIDRM
EINPROGRESS
_EINPROGRESS
EINTR
_EINTR
EINVAL
_EINVAL
EINVALSORTVER
_EINVALSORTVER
EINVLDATTR
_EINVLDATTR
EINVLDATTRVAL
_EINVLDATTRVAL
EINVLDMODE
_EINVLDMODE
EINVLDNAME
_EINVLDNAME
EIO
_EIO
EIOERR
_EIOERR
_EIOLOGIC
EISDIR
_EISDIR
ELOOP
_ELOOP
EMFILE
_EMFILE
EMLINK
_EMLINK
EMSGSIZE
_EMSGSIZE
ENAMETOOLONG
_ENAMETOOLONG
ENFILE
_ENFILE
ENODEV
_ENODEV
ENOENT
_ENOENT
ENOEXEC
_ENOEXEC
ENOFILEPOS
_ENOFILEPOS
ENOHOST
_ENOHOST
ENOLCK
_ENOLCK
ENOMEM
_ENOMEM
ENOMSG
_ENOMSG
ENOSORTRESTART
_ENOSORTRESTART
ENOSPC
_ENOSPC
ENOSYS
_ENOSYS
ENOTBLK
_ENOTBLK
ENOTDIR
_ENOTDIR
ENOTEMPTY
_ENOTEMPTY
ENOTSUP
_ENOTSUP
ENOTTY
_ENOTTY
ENXIO
_ENXIO
EOK
_EOK
EPARITYERR
_EPARITYERR
EPERM
_EPERM
EPIPE
_EPIPE
ERANGE
_ERANGE
EROFS
_EROFS
_ESIGNALERR
_ESIGNALERR
ESPIPE
_ESPIPE
ESRCH
_ESRCH
ETIME
_ETIME
ETXTBSY
_ETXTBSY
EXDEV
_EXDEV
<fcntl.h>—File Control
F_DUPFD
F_GETFD
F_GETFL
F_GETLK
F_RDLCK
F_SETFD
F_SETFL
F_SETLK
F_SETLKW
F_UNLCK
F_WRLCK
FD_CLOEXEC
O_ACCMODE
O_APPEND
_O_ATTRIBUTES
_O_BINARY
O_CREAT
O_EXCL
O_NONBLOCK
O_RDONLY
O_RDWR
_O_TEMPORARY
O_TRUNC
O_WRONLY
struct flock
<float.h>—Floating-Point Characteristics
DBL_DIG
DBL_EPSILON
DBL_MANT_DIG
DBL_MAX
DBL_MAX_10_EXP
DBL_MAX_EXP
DBL_MIN
DBL_MIN_10_EXP
DBL_MIN_EXP
FLT_DIG
FLT_EPSILON
FLT_MANT_DIG
FLT_MAX
FLT_MAX_10_EXP
FLT_MAX_EXP
FLT_MIN
FLT_MIN_10_EXP
FLT_MIN_EXP
FLT_RADIX
FLT_ROUNDS
LDBL_DIG
LDBL_EPSILON
LDBL_MANT_DIG
LDBL_MAX
LDBL_MAX_10_EXP
LDBL_MAX_EXP
LDBL_MIN
LDBL_MIN_10_EXP
LDBL_MIN_EXP
<grp.h>—Group Structure
struct group
<iso646.h>—Operator Synonyms
and
and_eq
bitand
bitor
compl
not
not_eq
or
or_eq
xor
xor_eq
<locale.h>—Localization
LC_ALL
LC_COLLATE
LC_CTYPE
LC_MONETARY
LC_NUMERIC
LC_TIME
NULL
struct lconv
<math.h>—Mathematics
HUGE_VAL
<pwd.h>—Password Structure
struct passwd
<semaphore.h>—POSIX Semaphores
sem_t
<setjmp.h>—Nonlocal Jumps
int setjmp(jmp_buf env);
int sigsetjmp(sigjmp_buf env, int savemask);
jmp_buf
sigjmp_buf
<signal.h>—Signal Handling
pid_t
sig_atomic_t
SIG_DFL
SIG_ERR
SIG_IGN
SIGABRT
SIGALRM
SIGBUS
SIGCHLD
SIGCONT
SIGEMT
SIGFPE
SIGHUP
SIGILL
SIGINT
SIGKILL
SIGPIPE
SIGPOLL
SIGPWR
SIGQUIT
SIGSEGV
sigset_t
SIGSTOP
SIGSYS
SIGTERM
SIGTRAP
SIGTSTP
SIGTTIN
SIGTTOU
SIGUSR1
SIGUSR2
SIGWINCH
struct sigaction
<stdarg.h>—Variable Arguments
type va_arg(va_list ap, type);
va_list
void va_start(va_list ap, argN);
<stddef.h>—Common Definitions
NULL
offsetof(type, member-designator)
ptrdiff_t
size_t
wchar_t
<stdio.h>—Input/Output
BUFSIZ
EOF
FILE
FILENAME_MAX
FOPEN_MAX
fpos_t
_IOFBF
_IOLBF
_IONBF
L_ctermid
L_cuserid
L_tmpnam
NULL
SEEK_CUR
SEEK_END
SEEK_SET
size_t
stderr
stdin
stdout
TMP_MAX
<stdlib.h>—General Utilities
div_t
EXIT_FAILURE
EXIT_SUCCESS
ldiv_t
MB_CUR_MAX
NULL
RAND_MAX
size_t
wchar_t
<string.h>—String Handling
NULL
size_t
<sys/sem.h>—X/Open Semaphores
GETALL
GETNCNT
GETPID
GETVAL
GETZCNT
SEM_UNDO
SETALL
SETVAL
struct sem
struct sembuf
struct semid_ds
S_ISREG
S_ISUID
_S_IUSEGUARD
S_IWGRP
S_IWOTH
S_IWUSR
S_IXGRP
S_IXOTH
S_IXUSR
struct _MCPstat
struct stat
<sys/times.h>—Processor Times
clock_t
struct tms
The error messages contained in this appendix are normal compiler output messages
that occur when the C compiler detects an error in program code. These errors are
listed in alphabetic order, with special characters, symbols, and numbers preceding
the usual alphabetic sequence. At the end of each error or warning message, the file
title of an included file that the message is issued from may appear between “[“ and
“]”. The file title is added if the error or warning message is part of the included file,
and only appears in the error file and remote file.
For a list of abnormal compiler output error messages, see Appendix J, “Abnormal
Compiler Output Messages,” in this manual.
The <sys/shm.h> header has been included and the $FARHEAP compiler control
option is not set. The <sys/shm.h> header is required to invoke the X/Open
defined shared memory feature. This feature also requires that the $FARHEAP
compiler control option be set.
The MERGE compiler control option may only be specified once for any given
compile.
The compiler control option in error is not allowed inside an INITIALCCI file.
An octal constant (an integer that started with 0 or a \0... in a character or string
constant) was scanned that contained the digit 8 or 9. Octal constants must only
contain the digits 0 through 7. A common mistake is to place a leading 0 in front of
a decimal integer constant, making it an octal constant. Another mistake is to
forget the “x” when forming a hexadecimal constant (089 instead of 0x89). For
more information on integer, character, and string constants, see Section 1,
“Overview of the C Language.”
A function that is declared with a linkage specification may not have a variable
length argument list. For more information on function declarators, see Section 3,
“Declarations,” and for more information on linkages, see Appendix B, “Interface
to the Library Facility,” both in this manual.
The storage class inline was used in something other than a function definition.
For more information on storage class specifiers, see Section 3, “Declarations,” in
this manual.
Objects cannot be declared with type void. For more information on void type, see
Section 2, “Types,” in this manual.
When the <name> is used after the enum keyword, the name must first be
declared as an enumeration tag. To correct this error, add the enumeration tag
declaration or change the name to match an already declared enumeration tag. For
more information on enumeration types, see Section 2, “Types,” in this manual.
The call did not supply the same number of arguments as the function was
declared or defined to have. This can also occur if the function was implicitly
defined or, if its declaration did not specify the number of arguments, this call had
a different number than a prior call. To correct this error, the number of arguments
should be made the same or the function should be declared as taking a variable
number of arguments. For more information on how to declare variable number of
arguments, see Section 3, “Declarations,” in this manual.
The source file specifies an invalid mnemonic for the OPTION task attribute. A
correct mnemonic should be specified. Refer to the Work Flow Administration
and Programming Guide for a list of valid mnemonics for the OPTION task
attribute.#include file not found.
An attempt was made to #include a file that could not be found. Check to be sure
the file name is spelled correctly and the search path, if any, is set up correctly.
This error is affected by the ANSI compiler control option. If ANSI is set, this error
is generated; otherwise, the compile will wait on a “NO FILE”. For more
information on file inclusion, see Section 8, “The C Preprocessor,” in this manual.
For more information on the SEARCH compiler control option, see Section 10,
“Compiler Control Options,” in this manual.
A FAULT OCCURRED WHILE SCANNING THE DISPLAY FORM TITLE - <file name>.
The file name specified is invalid. Correct the file name and recompile.
A NAME NODE WAS EXPECTED BETWEEN OR AFTER SLASHES IN THE FILE NAME - <file nam
e>.
The file name is invalid because it contains two consecutive slashes or it ends
with a slash. Correct the file name and recompile.
Names that start with two underscores (__) should only be generated by the C
compiler. Do not declare names that start with two underscores. For more
information on identifiers, see Section 1, “Overview of the C Language,” in this
manual.
A NON-ALPHANUMERIC CHARACTER WAS FOUND IN THE FAMILYNAME FOR THE FILE NAME <fi
le name>.
A family name must contain only uppercase alphanumeric characters. Correct the
file name and recompile.
A NULL QUOTED STRING IS ILLEGAL AS AN IDENTIFIER IN THE FILE NAME - <file name
>.
The file name may contain invalid characters. An identifier that represents one
level of the file title or a usercode can include hyphens and underscores without
quotes. If other non alphanumeric characters are included, then the identifier must
be enclosed in quotes. Correct the file name and recompile.
A RIGHT PARENTHESIS WAS EXPECTED AFTER THE USERCODE FOR THE FILE NAME - <file
name>.
A SLASH WAS EXPECTED BETWEEN SUCCESSIVE IDENTIFIERS IN THE FILE NAME - <fileEn
ame>.
The file name may contain invalid characters. An identifier that represents one
level of the file title or a usercode can include hyphens and underscores without
quotes. If other non alphanumeric characters are included, then quotes are
required. Correct the file name and recompile.
An argument for an old style function declaration has been declared in the
argument section without a type or storage class specifier. For more information
on old style function declaration, see Section 7, “Functions,” in this manual.
A typedef having function type cannot be used in the definition (with body) of
a function.
In the definition of a function, the definition cannot inherit the function type from a
typedef. For example, in the following code fragment, it is illegal for f to inherit its
function type int from typedef F:
This error can occur also if the wrong typedef identifier is used in declaring valid
enums, structs, or unions.
A USERCODE WAS EXPECTED AFTER THE LEFT PARENTHESIS IN THE FILE NAME - <fileEna
me>.
Addressable expression expected. Note: Objects whose address has not been take
n in the source code may not be addressed in a TADS session.
Objects that are addressed are mapped differently in memory than those that are
not addressed. If an object is not addressed when a program is compiled, it may
not be addressed during a TADS debug session on that program.
An array may not be declared with less than one element. For more information on
array declarators, see Section 3, “Declarations,” in this manual.
The file name may contain invalid characters. An identifier that represents one
level of the file title or a usercode can include hyphens and underscores without
quotes. If other non alphanumeric characters are included, then quotes are
required. Correct the file name and recompile.
Any macro definition removed by #undef will be unavailable for use in a TADS s
ession. This warning will not be repeated for this compilation unit.
This warning is issued by the compiler if the TADS option is enabled and a #undef
directive is encountered.
Application of the OPTIMIZE compiler control option may cause unexpected respo
nses: statements and their breakpoints may be moved out of order or even remov
ed.
This warning is issued during a TADS debug session if the program being
debugged was compiled with the OPTIMIZE option enabled.
The operand to the cast operator does not have scalar type. Casting a structure,
union, function, or void type is not allowed. It is sometimes possible to take the
address of the operand, cast it to be a pointer to a different structure, union, or
function, and then dereference the cast. For more information on cast operators,
see Section 5, “Expressions and Operators,” in this manual.
One of the operands in an arithmetic expression does not have arithmetic type.
For an operator description and more information on type and class of
expressions, see Section 5, “Expressions and Operators,” in this manual.
The notation used to declare a reference parameter is similar to that used for
declaring a pointer. It is therefore syntactically possible to declare a pointer to a
reference, an array of references, a reference to a reference, or a function
returning a reference. However, such declarations are not semantically meaningful
and are, hence, flagged as errors. For more information on reference parameters,
see Appendix A, “Interface to the Library Facility,” in this manual.
If a pointer is declared to point to a type that is qualified with either the const or
volatile qualifier, the pointer may only be assigned to a similarly qualified pointer.
For more information about type qualifiers, see Section 3, “Declarations,” in this
manual.
The target of the assignment has a constant qualified type and cannot be
assigned. The constant qualification should be removed or the assignment should
be removed. For more information on const type qualifiers, see Section 3,
“Declarations,” in this manual.
C does not specify the order of evaluation for other operands of most operators,
therefore the embedded assignment and the access to the target of the
assignment can be evaluated in either order. The value of the expression can
change depending on the level of optimization done by the compiler. The
embedded assignment should be moved out as a separate statement or use the
comma (,), if (?:), logical-and (&&), or logical-or (||) operator to control the order of
evaluation. For more information on these operators and on gray code, see
Section 5, “Expressions and Operators,” in this manual.
A bit field is a set of contiguous bits within a word that is treated as an integer. A
bit field that is not declared to have integral type is flagged as an error. For more
information on bit fields, see Section 2, “Types,” in this manual.
A bit field is a set of contiguous bits within a word that is treated as an integer. If
the ANSI option is enabled, a bit field that is not declared to have a type of
signed int or unsigned int is flagged as an error. For more information on bit
fields, see Section 2, “Types,” in this manual.
The bitwise operators shift left ( << ), shift right ( >> ), and negation ( ~ ) may give
undesirable results when performed on signed integral values. For more
information on integer types, see Appendix C, “Porting C Applications from Other
Systems,” in this manual. For more information on the UNSIGNED and
SIGNEDFIELD compiler control options, see Section 10, “Compiler Control
Options,” in this manual.
An internal procedure to the compiler has received data that is incorrect. This is a
compiler error.
The source file specified both TADS and BINDINFO, LEVEL, or LIBRARY compiler
control option. This warning indicates that a TADS session can be initiated on an
object file with bind information (BINDINFO, LEVEL, or LIBRARY), but it cannot be
initiated on an object file generated by the BINDER.
Break is only allowed in do, for, and while loops or switch statements.
The break statement can only be used inside the statement controlled by a do, for,
while, or switch statement. For more information on statements, see Section 6,
“Statements,” in this manual.
For strict conformance to the ANSI C standard, an invocation of the setjmp macro
may appear only in a very limited set of contexts. This message may also be
affected by the compiler control options ANSI and LINT(SETJMP). The macro
sigsetjmp has the same restrictions. For more information on compiler control
options, see Section 10, “Compiler Control Options,” in this manual.
The current compiler control option is not a class option with subordinate sub
options. It cannot be referenced as a subordinate option.
Only user defined options can be specified with the OPTION compiler control
option. They may only be Boolean options.
If necessary to pass a file, the FD can be passed. The ALGOL entry point must be
changed to have a call-by-value integer formal parameter and to use the POSIX I/O
interfaces defined in file SYMBOL/POSIX/ALGOL/PROPERTIES.
The case label syntax can only be used inside the statement controlled by the
switch statement. The label can either be deleted or it can be placed within a
statement controlled by the switch statement. For more information on the switch
statement, see Section 6, “Statements,” in this manual.
An illegal type cast was attempted. In a cast expression, both the type and the
expression must have scalar type. For more information on the cast operator,
refer to Section 5, “Expressions and Operators,” in this manual.
The version of the listed software does not match the version of the software
currently running. One or the other is in error and unknown results could happen if
the versions do not match.
A comment was opened (/*...), but was not closed (...*/) before the end of the
file. The comment must be closed in the same file that opened it.
The source file contains too many library declarations, too many procedures
declared as library entry points, or too many characters in strings associated with
the libraries (titles, intnames, and so forth). Either reduce the above limits or split
the source file into smaller files.
The source file contains too many parameters in the procedures declared as
library entry points. Either reduce the number of parameters or the complexity of
the parameters.
The source file contains too many library declarations, too many procedures
declared as library entry points, or too many characters in strings associated with
the libraries (titles, intnames, and so forth). Either reduce the above limits or split
the source file into smaller files.
The source file contains a structure or union declaration with too many nested
struct or union specifiers. Reduce the number of nested struct or union specifiers
by combining two or more struct or union specifiers.
The result code file is to be bound, but the source file contains too many
procedures passed as parameters or whose address are taken. Either reduce the
number of above or split the source file into smaller files.
The statement, possibly with its adjoining statements, requires too many
temporaries to be compiled. Simplify the statement by moving subexpressions
out as separate statements.
The resulting code file is to be bound, but the source file contains too many calls
on procedures passed as parameters or calls on pointers to procedures. Either
reduce the number of such calls or split the source file into smaller files.
The source file has too many identifiers to be compiled. Either reduce the number
of identifiers or split the file into smaller files.
The generated code has too many branches. Either reduce the complexity or split
the source file into smaller files.
The statement, possibly with its adjoining statements, requires too many
temporaries to be compiled. Simplify the statement by moving subexpressions
out as separate statements.
Too many string constants exist in the source file. Reduce the number of string
constants by combining string constants together or splitting the source file.
The source file has too many characters in its identifiers to be compiled. Either
reduce the length of the identifiers, reduce the number of identifiers, or split the
file into smaller files.
Too many characters exist in all the string constants in source file. Reduce the
number of characters by removing string constants, making the strings shorter, or
splitting the source file.
The source file contains too many procedures declared as library entry points.
Either reduce the number or split the source file into smaller files.
The function contains too many calls on the setjmp macro to be compiled. Either
reduce the number of calls or split the function into smaller functions.
The STATISTICS compiler control option was set for too many procedures and/or
blocks to be compiled. Either reduce the number of procedures and/or blocks that
have STATISTICS set or split the source file into smaller files.
The source file contains an expression that is too complex. The expression should
be split into smaller expressions, each as a separate statement.
The compiler option BINDINFO may only be set for C source files that contain the
“main” function. It is normally unnecessary to specify this compiler option for C
source files because the C compiler chooses the correct setting automatically.
The compiler option LIBRARY may only be set for C source files that do not
contain the “main” function. It is normally unnecessary to specify this compiler
option for C source files because the C compiler chooses the correct setting
automatically.
Compiler option FARHEAP must be set to use "__near" or "__far" type qualifier.
The FARHEAP compiler control option must be set to use the type qualifiers or the
macros and functions declared in the header <alloc.h>.
Adjacent string literals are concatenated by the compiler. However, they must be
of the same type. For example, a normal string constant may not be concatenated
with a wide string constant. For more information on string constants, refer to
Section 1, “Overview of the C Language,” in this manual.
The same type qualifier (volatile or const) was given twice, the same type
adjective (short, long, signed, unsigned) was given twice, or the type was given
twice. The duplicate information should be deleted. For more information on type
specifiers and qualifiers, refer to Section 3, “Declarations,” in this manual.
Conflicts with prior $BINDER_MATCH option with same first string but different
second string.
The indicated expression cannot be evaluated at compile time. Either change the
expression so that it can be evaluated at compile time or initialize the variable
with an assignment statement instead of with an initializer on the declaration. For
more information on constant expressions, refer to Section 5, “Expressions and
Operators,” in this manual.
The indicated operand is not a constant expression or does not have integral type.
The operator, however, requires a constant integral expression. For more
information on expression types and constant expressions, refer to Section 5,
“Expressions and Operators,” in this manual.
The indicated operand is not a constant expression or does not have integral type
or has a negative value. The context, however, requires a non-negative constant
integral expression. For more information on expression types and constant
expressions, refer to Section 5, “Expressions and Operators,” in this manual.
A numeric constant was scanned that is larger than can be represented internally.
For more information about the range of C variables, refer to Section 2, “Types.” If
the number is a single precision floating point, use of double precision may
provide enough range. For more information on floating-point types, refer to
Section 2, “Types,” and for more information on the DBLTOSNGL compiler control
option, refer to Section 10, “Compiler Control Options,” in this manual.
The continue statement can only be used inside the statement controlled by a do,
for, and while statement. For more information on the continue statement, refer
to Section 6, “Statements,” in this manual.
DELETE or VOIDT may only be used on $ cards from the CARD file.
The DELETE or VOIDT compiler control options may only appear in the primary
input file (CARD). All other occurrences are considered errors.
The value of this case label is equal to the value of a previous case label that
occurs within the same switch statement. All case labels for the same switch
statement must be unique. To correct this error, change the value of either case
label, delete one, or move one to another switch statement. For more information
on the switch statement, refer to Section 6, “Statements,” in this manual.
Enumerated option must be compared equal (= or ==) or not equal (!= or ^= or <
>) to enumerated constant.
Enumerated option must be compared (= or ==, != or ^= or <>, <, <=, >, >=) to
integer constant or integer option.
• Equality (= or ==)
• Inequality (^= or != or <>)
• Less than (<)
• Less than or equal to (<=)
• Greater than (>)
• Greater than or equal to (>=)
ERROR LIMIT OF <error limit> HAS BEEN EXCEEDED. COMPILATION WILL BE TERMINATE.
Either the limit specified on the ERRORLIMIT compiler control card has been
exceeded or the default limits set by the particular compiler has been exceeded.
The limit can be increased or decreased by using the ERRORLIMIT option.
The number of characters in the strings for $BINDER_MATCH options and the
#pragma binder_match directive exceeded an internal limit. Either remove some of
the options or shorten some of the strings.
Expected "<token>".
A syntax error was encountered in a situation where <token> was the only
possible valid token that could appear at the indicated error position and the
compiler was unable to make a more concrete suggestion (such as, “Missing
<token>” or “indicated token ignored: expected <token>”) because of additional
syntax errors nearby or an unusually complex syntactic context.
An attempt was made to return an expression whose type is not compatible with
the return type of the function. For example, this may happen when trying to
return a struct from a function whose return value is defined to be a simple type
such as int or pointer.
The identifier in an enumerator list was declared with a trailing comma. This
message appears as an error, if the ANSI option is enabled. Please refer to
“Enumeration Types” in Section 2 of this manual for a description of the correct
syntax for enumeration declarations.
Extraneous "<token>".
A syntax error was encountered. It is likely that the indicated token is superfluous
and should be removed to correct the error.
Function and array types are not permitted as function result types.
Functions may return a value of any type, except array or function. For more
information on return values, refer to Section 7, “Functions,” in this manual.
The function name that occurs before the parentheses was called, but it was
never declared or defined. In this case, a declaration is automatically added. The
function is declared with storage class extern and result type of int. For more
information on implicit and explicit function declarations, refer to Section 3,
“Declarations,” in this manual.
Certain standard library functions may not be invoked dynamically during a TADS
debug session. An attempt to invoke such a function caused this message to be
displayed.
Function "<name>" not optimized because of calls on macro setjmp or macro sigs
etjmp.
Function "<name>" was declared static at line <number> and was referenced, but
was never defined.
A function that is declared static should be defined within the scope of the
program, since such functions cannot be imported from other programs. If the
ANSI option is enabled, this message appears as an error; otherwise, the message
appears as a warning. For more information on storage class specifiers, refer to
Section 3, “Declarations,” in this manual.
A static function, “<name>”, has been declared and not used. For more
information, see the subordinate option UNUSEDSTATICFUNCTION under “LINT
Option” in Section 10, “Compiler Control Options.”
The indicated expression should describe a function to call, but it does not have
type function or pointer to function. If a function call was not desired, the syntax
should be corrected; if needed, an expression of type function or pointer to
function should be used. For more information on reading and writing complex
declarators, refer to Section 3, “Declarations,” in this manual.
A function that is declared with a linkage specification must be declared using the
function prototype format. In particular, a function with no parameters must be
declared with a void parameter list (for example, int f (void); ) rather than an
empty parameter list. For more information on function declarators, refer to
Section 3, “Declarations,” and for more information on linkages, refer to
Appendix A, “Interface to the Library Facility,” both in this manual.
The notation used to declare a reference parameter is similar to that used for
declaring a pointer. It is therefore syntactically possible to declare a pointer to a
reference, an array of references, a reference to a reference, or a function
returning a reference. However, such declarations are not semantically meaningful
and are, hence, flagged as errors. For more information on reference parameters,
refer to Appendix A, “Interface to the Library Facility,” in this manual.
A member of a structure or union cannot have type function. The type can be
changed to be pointer to function, which is allowed. For more information on how
to declare a pointer to a function, refer to Section 3, “Declarations,” in this manual.
Guessed "<keyword>".
A syntax error was encountered. It is likely that the indicated identifier should be
replaced with the suggested <keyword> since the <keyword> would be
syntactically correct and the spelling of the <keyword> is close to that of the
identifier.
A function was defined using the prototype syntax. Prototype syntax is where the
type of each formal argument and, optionally, the name is supplied between
parentheses. When defining a function, however, the name is required and
therefore, needs to be supplied.
Another possible cause is that an old-style declaration is desired, but the name of
the first formal argument is the same as the name of a typedef. Since the first
token inside the opening parenthesis is a type, prototype syntax is assumed.
Either change the name of the formal argument or use prototype scope. For more
information on function prototype, refer to Section 3, “Declarations,” in this
manual.
The indicated identifier exceeds the maximum number of significant characters for
identifiers. All characters in the identifier name beyond this limit are ignored.
Multiple identifiers that differ only with respect to characters beyond this limit will
be indistinguishable. For more information on identifiers, refer to Section 1,
“Overview of the C Language,” in this manual.
A function can be declared in both the old style format and the function prototype
format only if the argument types in the function prototype would not be subject
to default argument promotion (namely, char, short int, and float). The message
only appears if the ANSI option is enabled. Mixing old style and function prototype
declaration for the same function is not recommended. For more information on
function call, refer to Section 5, “Expressions and Operators,” and for more
information on defining functions, refer to Section 7, “Functions,” both in this
manual.
Pointers can be cast to pointer type or an integral type only and only pointers or
integers can be cast to pointer type. If desired, multiple casts can be used to
achieve the desired type. For more information on the cast operator, refer to
Section 5, “Expressions and Operators,” in this manual.
The target list specifying the secondary system is either missing a comma, a right
parenthesis, or contains an invalid target identifier.
The enumeration value required for this specific compiler control option is either
less than one or an invalid value.
No information was found within the parentheses used with the current option. A
value was required within the empty parentheses.
The TARGET option specified was not recognizable by the current system.
An expression with integral type was implicitly cast to have pointer type. This is
only a warning. If the cast is desired, an explicit cast will prevent this warning from
being displayed. For more information on the cast operator, refer to Section 5,
“Expressions and Operators,” in this manual.
An expression with pointer type was implicitly cast to have integral type. This is
only a warning. If the cast is desired, an explicit cast will prevent this warning from
being displayed. For more information on the cast operator, refer to Section 5,
“Expressions and Operators,” in this manual.
The context requires that the size of the type be known. The type supplied is
incomplete and so the size cannot be determined. One solution might be to use a
pointer to the type instead of the type itself. Otherwise the type should be
completed or the context changed. For more examples of incomplete types and
how to complete them, refer to Section 2, “Types,” in this manual.
A syntax error was encountered. It is likely that the indicated token should be
replaced with the suggested <token> to correct the error. In some cases, the
suggested <token> will indicate a class of tokens instead of a specific token, for
example,
Means that a number such as 1 or 542 should be supplied, not the identifier
“number”.
Function types and void types may not be declared with initializers. For more
information on initializers, refer to Section 3, “Declarations,” in this manual.
The indicated operand does not have integral type. The operator, however,
requires an integral expression. For more information on determining the type of
an expression, refer to Section 5, “Expressions and Operators,” in this manual.
One of the operands in an integral expression does not have integral type. For an
operator description and more information on type and class of expressions, refer
to Section 5, “Expressions and Operators,” in this manual.
An invalid file title was used in an #include statement. Check the syntax of the file
name. For more information the #include directive, refer to Section 8, “The C
Preprocessor,” in this manual.
In an expression containing the subscript operator ([ ]), one of the two operands
must be an array or pointer type and the other operand must be an integral type.
For more information on array subscripting, refer to Section 5, “Expressions and
Operators,” in this manual.
The preprocessor directive given is not one of the valid preprocessor directives.
For more information on preprocessor directives, refer to Section 8, “The C
Preprocessor,” in this manual.
Invalid TARGET value in $ card. Code will be produced for TARGET = LEVEL0.
The processor specified in the TARGET compiler control option is not a recognized
processor. The compile is continuing with the default value of TARGET=LEVEL0.
Multiple subordinate options or strings are not allowed within the parenthesized
list.
An attempt was made to goto a label that is not defined within the function
containing the goto. The goto statement can only be used to transfer control from
one statement in a function to another statement in the same function. For more
information on goto statements, refer to Section 6, “Statements,” in this manual.
Refer to Volume 2, “Headers and Functions,” for information on the header
<setjmp.h> and about transferring control to a point outside of the current
function.
The function being called has fewer formal arguments than the number of actual
arguments supplied. The extra actual argument has no side effects so it can be
safely discarded. The number of actual arguments should match the number of
formal arguments or the function should be declared and defined as taking variable
number of arguments. For more information on how to declare a variable number
of arguments, refer to Section 3, “Declarations,” in this manual.
The function being called has fewer formal arguments than the number of actual
arguments supplied. The extra actual arguments have no side effects so they can
be safely discarded. The number of actual arguments should match the number of
formal arguments or the function should be declared and defined as taking variable
number of arguments. For more information on how to declare a variable number
of arguments, refer to Section 3, “Declarations,” in this manual.
A source line, which may be continued onto several physical lines by terminating
each physical line with a backslash, may be up to <number> characters long. A
source line exceeding this maximum length is ignored by the compiler.
Lexical error.
A character or sequence of characters that does not form a valid C token was
encountered. The compiler resumes compilation after skipping over the offending
character or characters.
An attempt was made to declare a library that has already been declared. For more
information on referencing libraries, refer to Appendix A, “Interface to the Library
Facility,” in this manual.
The source file contains a library declaration where the library name or title is not a
legal name or title. A legal library name is 1 to 17 letters or digits. A legal library title
is a legal file title.
The source file specified an attribute that is no longer implemented. The use of
that attribute needs to be removed and possibly replaced by use of newer
attributes.
The generated code for the “outer block” is too large for Binder to handle. The
outer block contains code to initialize static variables and variables with file scope
and any code outside of functions. Either reduce the amount of code placed in the
outer block or split the source file into smaller files.
Line <sequence number>: the code segment has exceeded the maximum row size of
the CODE file. The AREASIZE attribute of the CODE file should be increased to
at least <number>.
The source file needs to a larger AREASIZE specified for the CODE file to compile.
To specify the AREASIZE, refer to either the CANDE COMPILE command or the
WFL COMPILE statement.
Line <sequence number>: the data segment has exceeded the maximum row size if
the CODE file. The AREASIZE attribute of the CODE file should be increased to
at least <number>.
The source file needs a larger AREASIZE specified for the CODE file to compile. To
specify the AREASIZE, refer to the CANDE COMPILE command or the WFL
COMPILE statement.
Too many variables, procedures, or constants exist in the source file. If the “D”:
level is 1, too much code and/or constants exist. If the “D” level is 2, too many
global variables and/or procedures exist. If the “D” level is 3 or greater, too many
local variables and/or procedures exist. Reduce the number or split the source file
into smaller files.
The last physical line in the source file terminates with a backslash, which is
intended to indicate that the source line is continued onto the next physical line.
This might indicate that some lines have been inadvertently deleted from the
source file.
The integer argument to a #line directive must be within a specific range. If the
ANSI option is enabled, the range is 1-32767; otherwise, the range is 1-99999999.
A function may not be declared with a linkage specification in any scope other
than file scope. For more information on the scope of identifiers, refer to Section 1,
“Overview of the C Language,” and for more information on linkages, see
Appendix B, “Interface to the Library Facility,” both in this manual.
The macro _ASERIES_SOURCE controls what names are declared in headers, their
values, and sometimes the semantics of the names. If _ASERIES_SOURCE
specifies a larger SSR value than the compiler, and if changes occur in a future
release, the compiler might not compile the program or it might compile the
program incorrectly in that release. To avoid this problem, define
A parameterized macro was invoked with too few actual arguments. The number
of actual arguments should match the number of formal arguments in the macro
definition. Also actual arguments must be non-empty token strings. For more
information on macro definitions, refer to Section 8, “The C Preprocessor,” in this
manual.
Missing #endif.
An #if preprocessor directive was encountered that does not have a matching
#endif directive. Check #if/#endif pairings to determine whether an extra #if
was included or an #endif erroneously omitted; for example, by accidentally
embedding it in a comment. For more information on conditional inclusion, refer to
Section 8, “The C Preprocessor,” in this manual.
A left parenthesis is the next token required but was not found.
A matching right parenthesis was not found to match the left parenthesis found in
the compiler control record expression.
The matching right parenthesis was not found following the specification of a
subfile name in an INCLUDE option. The subfile name must match a subfile name
specified in a corresponding COPYBEGIN and COPYEND compiler control card.
The last member of a structure or union was declared without a trailing semicolon.
This message appears as an error if the ANSI option is enabled. Refer to
“Structure Types” and “Union Types” in Section 2 of this manual for a description
of the correct syntax for structure and union declarations.
A string was opened ("...) on a line, but was not closed (...") on the same line. If
the string needs to be longer than one line, a trailing backslash (\) can be used to
logically join the next line to the end of the current line. Or each line can contain a
separate string and because they are adjacent, they will be concatenated to form a
single string. For more information on string constants, refer to Section 1,
“Overview of the C Language,” in this manual.
Missing "<token>".
A syntax error was encountered. It is likely that the suggested <token> was
inadvertently omitted and should be inserted before the error indicator to correct
the error. In some cases, the suggested <token> will indicate a class of tokens
instead of a specific token, for example,
Missing "number".
Means that a number such as 1 or 542 should be supplied, not the identifier
“number”.
MORE THAN 17 CHARACTERS OCCURRED IN A NAME NODE FOR FILE NAME - <file name>.
The name nodes of a file name are separated by slashes and should not contain
more than 17 characters. Correct the file name and recompile.
The file name is invalid because it contains more than 12 name nodes. Correct the
file name and recompile.
The identifier <name> was already used in another declaration in the same scope.
The problem can be avoided by changing either name or if possible, placing this
declaration in a more nested scope. For more information on the scope of
identifiers, refer to Section 1, “Overview of the C Language,” in this manual.
The identifier <name> has not been declared yet or the scope of its declaration
has already finished. Possibly it is misspelled, it needs to be declared, or the scope
of its declaration needs to be more global. For more information on the scope of
identifiers, refer to Section 1, “Overview of the C Language,” in this manual.
A file title in a #include directive that is bounded by quotes (") may not contain the
newline or quote character.
Newline, formfeed, vertical-tab characters are not allowed between the # and p
reprocessing directives.
Only preprocessor white space characters may occur between the hash (#)
symbol and the preprocessing directive. Preprocessor white space characters
include: horizontal tab, space, and comments. For more information on white
space, refer to Section 1, “Overview of the C Language,” in this manual and for
more information on lexical elements and lexical conventions of the preprocessor,
refer to Section 8, “The C Preprocessor,” also in this manual.
The sequence of the NEW file being created is out of order. The record being
processed has a sequence value less than that of the last record placed in the
NEW file.
The file name may contain invalid characters. An identifier that represents one
level of the file title or a usercode can include hyphens and underscores without
quotes. If other non alphanumeric characters are included, then quotes are
required. Correct the file name and recompile.
The OPTIMIZE (SET UNRAVEL) compiler control option was set, requesting that
certain functions calls be replaced by inline code. The indicated function cannot be
regenerated inline because it was not found in the support library. This is a
warning only and can be ignored.
The OPTIMIZE (SET UNRAVEL) compiler control option was set, requesting that
certain functions calls be replaced by inline code. The indicated function cannot be
regenerated inline because it contained a “cheap block”. This is a warning only and
can be ignored.
The OPTIMIZE (SET UNRAVEL) compiler control option was set, requesting that
certain functions calls be replaced by inline code. The indicated function cannot be
regenerated in because it is not a normal function. This is a warning only and can
be ignored.
The OPTIMIZE (SET UNRAVEL) compiler control option was set, requesting that
certain function calls be replaced by inline code. The indicated function cannot be
regenerated inline because the support library is not in its normal form. This is a
warning only and can be ignored.
The OPTIMIZE (SET UNRAVEL) compiler control option was set, requesting that
certain functions calls be replaced by inline code. The indicated function cannot be
regenerated inline because it has too many local declarations. This is a warning
only and can be ignored.
The OPTIMIZE (SET UNRAVEL) compiler control option was set requesting that
certain functions calls be replaced by inline code. The indicated function cannot be
regenerated inline because the support library is not in its normal form. This is a
warning only and cannot be ignored.
The OPTIMIZE (SET UNRAVEL) compiler control option was set, requesting that
certain functions calls be replaced by inline code. The indicated function cannot be
regenerated inline because it contained unrecognized code. This is a warning only
and can be ignored.
A call on the library function memcmp consists of a constant length parameter and
one or more constant string parameters. The length parameter is longer than the
string constant. The length is truncated to the length of the string constant. This is
a warning only.
The target of the assignment is not a valid target. Valid targets are called “lvalues”.
The result of a function call or a case is not an lvalue. Refer to Section 5,
“Expressions and Operators,” in this manual for a list of valid lvalues.
The indicated operation is not allowed when $FARHEAP(ONE) is set. Either avoid
that operation or reset $FARHEAP(ONE).
The type of the value of an assignment is not compatible with the type of the
target or the type of the actual argument is not compatible with the type of the
formal argument. For more information on assignment operators and function
calls, refer to Section 5, “Expressions and Operators,” in this manual.
The indicated operand is not valid in the context in which it is used. Usually this
means the type is not acceptable to the operator. For more information on
operators, refer to Section 1, “Overview of the C Language,” in this manual.
An internal compiler limit has been exceeded. The source program could be
resequenced or the number of include files could be lowered to stay within the
limit.
An object, “<name>”, has been declared and not used. For more information, see
the subordinate option UNUSEDOBJECT under “LINT Option” in Section 10,
“Compiler Control Options.”
Old-style functions are defined with only the argument names appearing between
parentheses. Prototype-style functions provide type information as well as the
argument names between the parentheses. Old-style argument declarations occur
when the type of the arguments are provided between the parenthesized list and
the curly-braces ({ }). Old-style argument declarations are not allowed with
prototype-style function definitions. For more information on old style and
function prototype, refer to Section 3, “Declarations,” in this manual.
The compiler was initiated from a 3.8 or older CANDE or by a program that does
not conform to the new rules for passing attribute lists (file, task, library, and data
base equations). The new rules will be enforced starting with the 4.1 release. This
warning indicates that the initiating program needs to be upgraded before the 4.1
release.
An attempt was made to compile a source file that does not contain any functions
visible outside of the source file scope. This C language implementation requires
that at least one non-static function must be declared within a source file.
If a function is declared within the body of another function, that function may only
have the storage class extern; all other storage classes are invalid. For more
information on storage class specifiers, refer to Section 3, “Declarations,” in this
manual.
Within a library program, the only objects that may be given the extern storage
class are functions. These are then the entry points for the library. Data objects
may not be extern within a library. For more information on the library facility, refer
to Appendix A, “Interface to the Library Facility,” in this manual.
Old-style argument declarations may only be used when defining a function with
its body. They may not be used, for example, in function prototypes. For more
information on old style declarations, refer to Section 7, “Functions,” in this
manual.
A declaration may contain only one storage class specifier. For more information
on storage class specifiers, refer to Section 3, “Declarations,” in this manual.
Some compiler control cards are required to be the first option on a particular
record. The current option in error should be placed on a separate card.
The compiler has stored an option into one of its internal tables with an
unrecognized type. This is a compiler error.
This warning is issued by the compiler if both the OPTIMIZE and TADS options are
enabled.
The indicated operand does not have pointer type. The operator, however,
requires a pointer expression. For more information on determining the type of an
expression, refer to Section 5, “Expressions and Operators,” in this manual.
The notation used to declare a reference parameter is similar to that used for
declaring a pointer. It is therefore syntactically possible to declare a pointer to a
reference, an array of references, a reference to a reference, or a function
The compiler control option is not a recognized option and is therefore treated as
a user defined option.
Some compiler control options must be the only option on a particular record. No
other option may follow it.
The notation used to declare a reference parameter is similar to that used for
declaring a pointer. It is therefore syntactically possible to declare a pointer to a
reference, an array of references, a reference to a reference, or a function
returning a reference. However, such declarations are not semantically meaningful
and are, hence, flagged as errors. For more information on reference parameters,
refer to Appendix A, “Interface to the Library Facility,” in this manual.
A previous declaration of this function specified a result type different from this
declaration. Possibly the result type was not specified and defaulted to int type.
Change the result type in either declaration to be the same.
A function that is declared with a linkage specification must have a scalar or void
return type; it may not, for example, return a structure. For more information on
linkages, refer to Appendix A, “Interface to the Library Facility,” in this manual.
A function declared with COBOL linkage must have a return type of void. For
more information on linkages and parameter passing, refer to Appendix A,
“Interface to the Library Facility,” in this manual.
Functions that are defined to return void may not use any form of the return
statement except the empty form:
return;
The expression does not have scalar type (arithmetic or pointer), but the context
requires scalar type. For more information on types of expressions, refer to
Section 5, “Expressions and Operators,” in this manual.
An internal procedure to the compiler has received data that is incorrect. This is a
compiler error.
String assignment (=) or update (+=) operator expected after string-valued opt
ion.
The syntax for a string valued compiler control option requires either an
assignment (=) or update (+=) operator. Either the incorrect option was used or the
option syntax is incorrect.
A valid string was expected for the string valued compiler control option.
1) A character array has been initialized with a string literal whose length is longer
than the array’s declared length. For more information on initializing arrays, refer to
Section 3, “Declarations,” in this manual.
This declaration of a structure or union only declares unnamed bit fields. At least
one named member must be declared. For more information on structure types
and union types, refer to Section 2, “Types,” in this manual.
The compiler control option is not a recognized option and is therefore treated as
a user defined compiler control option.
The combined space required for data items declared in <function name> (<numbe
r> words) exceeds the maximum available space of <number> words. Check MEMORY_
MODEL compiler control option.
The local variables declared in the indicated function require more space than can
be supported using the current MEMORY_MODEL compiler control option. Either
reduce the size requirements of the local variables or, if the memory model is tiny
or large, increase the LONGLIMIT compiler control option or use a larger memory
model.
The combined space required for data items declared in the outer block (<numbe
r> words) exceeds the maximum available space of <number> words. Check MEMORY_
MODEL compiler control option.
The global variables require more space than can be supported using the current
MEMORY_MODEL compiler control option. Either reduce the size requirements of
the global variables or, if the memory model is tiny or large, increase the
LONGLIMIT compiler control option or use a larger memory model.
The combined space required for variable <name> (<number> words) exceeds the m
aximum available space of <number> words. Check MEMORY_MODEL compiler control
option.
The indicated variable is larger than can be supported using the current
MEMORY_MODEL compiler control option. Either reduce the size of the variable
or, if the memory model is tiny or large, increase the LONGLIMIT compiler control
option or use a larger memory model.
The combined space required for variable length arguments to <function name> (
<number> words) exceeds the maximum available space of <number> words. Check M
EMORY_MODEL compiler control option.
A call on the indicated function requires more space for the variable number of
arguments than can be supported using the current MEMORY_MODEL compiler
control option. Either reduce the size of the arguments passed as variable number
of arguments or, if the memory model is tiny or large, increase the LONGLIMIT
compiler control option or use a larger memory model.
This is a compiler error indicating that the compiler has faulted with a recognized
program fault.
The VERSION compiler control option requires the update version specified to
have a cycle delta no greater than 999.
The ending comment delimiter token (*/) is expected to be in the same file as
the opening /* token.
The source file contains an opening comment delimiter (/*) that does not have a
matching closing comment delimiter (*/). For more information on comments,
refer to Section 1, “Overview of the C Language,” in this manual.
THE FILE TITLE DID NOT TERMINATE WITH A PERIOD FOR THE FILE NAME - <file name>
.
The file name should terminate with a period (.). Correct the file name and
recompile.
The function was declared with storage class static, but a function body for it
was not defined in the file. Storage class static prevents a definition in another
file from satisfying this declaration. Either remove the static keyword or provide
define the function with a body within the file. For more information on storage
class specifiers, refer to Section 3, “Declarations,” in this manual.
The global identifier "main" must be declared as a function returning int with
either no arguments or with the arguments (int, char **).
The global identifier “main” is restricted by the ANSI standard to refer to a function
that takes one of the following two forms: either “int main(void);" or
“int main(int, char **);”. If the identifier is intended to be the “main” function
that is invoked at program startup, its declaration should be altered to match one
of the two valid forms. Otherwise, the identifier should be renamed so as not to
conflict with the name of the “main” function.
The library named could not be found. The default name will be used. Library n
ame = <library name>.
In a string compiler control option, the specified library name is not a recognized
library.
The maximum code file size of 262,144 disk sectors (47,185,920 bytes) has been
exceeded.
The maximum allowable code file size is 262,144 disk sectors (47,185,920 bytes).
If the size of the code file cannot be reduced, the compiler is unable to produce a
code file. The size of a code file increases if the following compiler options have
been set: BINDINFO, LINEINFO, and TADS. Resetting one or all of these compiler
options may allow the compiler to produce a code file.
The limit of nested include files (indicated by <number>) has been exceeded. This
error commonly occurs when a file #includes itself, either directly or through
some other #include file.
The maximum number of different INCLUDE files (509) has been exceeded. INCLUDE
ignored.
The internal limit within the compiler is 509 include files per program. That limit
has been exceeded. The compiler will continue without doing the include.
The maximum number of different physical files (508) has been exceeded. MERGE
ignored.
The internal limit within the compiler is 509 include files per program. That limit
has been exceeded. The compiler will ignore the Merge.
The maximum number of user defined dollar options has been exceeded.
The internal limit of user defined compiler control options has been exceeded. The
error may be corrected by limiting the number of user defined options within the
current program source.
The $BYTEADDRESS option may be enabled only for MCP/AS (Extended) machines. Th
e target for this compile is not MCP/AS (Extended), therefore $BYTEADDRESS has
been disabled.
This is a warning message informing you that the $BYTEADDRESS option can be
enabled only for MCP/AS (Extended) systems.
C does not specify the order of evaluation for other operands of most operators;
therefore, the embedded assignment and the access to the target of the
assignment can be evaluated in either order. The value of the expression can
change depending on the level of optimization done by the compiler. The
embedded assignment should be moved out as a separate statement or use the
comma (,), if (?:), logical-and (&&), or logical-or (||) operator to control the order of
evaluation. For more information these operators and on gray code, refer to
Section 5, “Expressions and Operators,” in this manual.
The VERSION compiler control option requires the update version specified to
have a patch delta no greater than 9999.
The symbolically named region from the $ INCLUDE card could not be allowed.
One of the operands to the binary or ternary operator is not compatible with the
other operand or operands. For more information on operators, refer to Section 1,
“Overview of the C Language,” in this manual.
The variable "<name>" exceeds maximum size of <number> bytes. Check MEMORY_MOD
EL compiler control option.
The variable that is being declared is too large. The maximum number of bytes
that is legal is provided. The “Check MEMORY_MODEL...” sentence is supplied if
selecting a larger memory model would increase the maximum limit. For more
information on the MEMORY_MODEL compiler control option, refer to Section 10,
“Compiler Control Options,” in this manual.
The variable "<name>" exceeds maximum size of <number> elements. Check MEMORY_
MODEL compiler control option.
The variable that is being declared is too large. The maximum number of elements
that is legal is provided. The “Check MEMORY_MODEL...” sentence is supplied if
selecting a larger memory model would increase the maximum limit. For more
information on the MEMORY_MODEL compiler control option, refer to Section 10,
“Compiler Control Options,” in this manual.
The VERSION compiler control option requires the update version specified to
have a version delta no greater than 99.
The VERSION compiler control option requires the <release> number that is
sometimes referred to the <version> number to be no greater than 99.
This declaration of the object <name> conflicts with a previous declaration of the
same object. For example, this error may occur if the same variable “temp” were
declared in two places as “extern int temp;” and then “extern double temp;”.
This directive is not in the same source file as its opening conditional direc
tive.
Conditional directives such as #else, #elif, and #endif require an opening #if
directive within the same source file. For more information on conditional
inclusion, refer to Section 8, “The C Preprocessor,” in this manual.
This dollar option is a recognized option and may not be changed after the fir
st statement of the program.
Some compiler control cards are only allowed to be set or reset prior to the first
record of source program text. The option is a valid option, but cannot be changed
after compilation is under way.
This formal macro argument (“<name>”) has already been defined for the macro
“<name>”.
This generates the token "defined" through macro replacement. This generation
is not portable.
This INCLUDE file has been altered since its earlier use.
The alter date and alter time for the file being included does not match today’s
date or time from the last time it was included in this compile.
The current string compiler control option has no meaning in the current compiling
environment and should not be specified.
The indicated qualifier has been used illegally. Refer to the appropriate section in
this manual for information on the usage of “const”, “volatile”, “_ _near”, and “_
_far” qualifiers.
A near or far qualifier was encountered for an object with “auto” storage class, or
a member of a structure or union that is not a pointer to a near or far object.
A macro can be redefined, but only if the list of tokens is identical to the original
definition. White space tokens (blanks, comments) do not have to exactly match,
but their positions in the list must match. To correct this error, the two definitions
should be made the same or the macro should be #undef before it is redefined.
For more information on undefining and redefining macros, refer to Section 8,
“The C Preprocessor,” in this manual.
A storage class specifier was used in a declaration for which it is not appropriate;
for example, declaring a global variable with the storage class auto. For more
information on storage class specifiers, refer to Section 3, “Declarations,” in this
manual.
A call on the parameterized macro <name> must have the same number of
parameters as the macro definition. For more information on macro definitions
with parameters, refer to Section 8, “The C Preprocessor,” in this manual.
An attempt was made to declare a function with too many arguments. The internal
limit for the number of arguments allowed is given in <number>. For more
information on internal compiler limits, refer to Appendix B, “Internal Compiler
Limits,” in this manual.
A call on the parameterized macro <name> must have the same number of
parameters as the macro definition. For more information on macro definitions
with parameters, refer to Section 8, “The C Preprocessor,” in this manual.
The source file contains too many “bad” labels. A bad label is a global label that is
branched to from inside a nested procedure. Either reduce the number of bad
labels or split the source file into smaller files.
An internal procedure to the compiler has received data that is incorrect. This is a
compiler error.
The internal tables of the compiler have exceeded the maximum number of cross
referenced identifiers.
An internal procedure to the compiler has received date that is incorrect. This is a
compiler error.
More values were supplied between the curly braces ({ }) in the initializer than
were required for the variable or for a member of the variable being declared.
Possibly the total number of values supplied is correct, but they are grouped
incorrectly. For more information on initializers, refer to Section 3, “Declarations,”
in this manual.
The internal limit of string compiler control options has been exceeded. This is a
compiler error. The error can be avoided by limiting the number of strings or their
length.
A syntax error was encountered from which the compiler was not able to recover
by suggesting a minor correction. The compiler has therefore ignored a portion of
the program and has restarted compilation at <token>. Usually, a single
declaration, statement, or group of statements has been ignored and may contain
undetected errors. This error occurs when the syntax errors are numerous or
severe.
A severe syntax error was encountered. The compiler was unable to find a point
from which the compile could be restarted with any likelihood of producing
correct or useful errors and warnings.
An integer value was expected for the integer compiler control option.
Update operator (+=) can only be used for string valued options.
The NEW compiler control option does not require update operators in its syntax.
A type adjective (short, long, signed, unsigned) cannot be used with the specified
type. For more information on character, integer, and floating-point types, refer to
Section 2, “Types,” in this manual.
A type adjective (short, long, signed, unsigned) cannot be used when the type is
specified using a typedef. Either use the type adjective when declaring the typedef
or do not use a typedef. For more information on initializers, refer to Section 3,
“Declarations,” in this manual.
Using the <option name> instead of subordinate option <class name>(<option nam
e>).
The <option name> is the name of both an option and a subordinate option. The
value of the option is used inside of Boolean expressions in an compiler control
image. The following example uses the option UNSIGNED and not the subordinate
option PORT(UNSIGNED):
$SET PORT(CHAR2=UNSIGNED)
To use the value of the subordinate option, you should include the following
<class name>:
$SET PORT(CHAR2=PORT(UNSIGNED))
If a formal argument to a function is declared of type void, void must be the only
item between the parentheses, for example, f(void). For more information on
function declarators, refer Section 3, “Declarations,” in this manual.
A wide character string was provided in a place where only a normal character
string is allowed. Change the wide character string to be a normal character string.
Wrong tag.
The tag is the identifier after struct, union, or enum. Either the identifier was not
previously declared to be a tag or it was declared to be a tag for a different type
(struct, union, or enum) than is currently being used. For more information on
enumerator, structure, and union types, refer to Section 2. “Types,” in this manual.
The error messages in this appendix indicate that the C compiler has detected an
unexpected logic error in its own processing. Contact your customer support
representative to report the problem.
The text describes the elements of the diagrams and provides examples.
Paths
Paths show the order in which the command or statement is constructed and are
represented by horizontal and vertical lines. Many commands and statements have a
number of options so the railroad diagram has a number of different paths you can
take.
REMOVE
SOURCE
OBJECT
%DIAG
REMOVE;(, SOURCE,OBJECT)!
The three paths in the previous example show the following three possible
commands:
• REMOVE
• REMOVE SOURCE
• REMOVE OBJECT
• Mandatory items
• User-selected items
• Order in which the items must appear
• Number of times an item can be repeated
• Necessary punctuation
Follow the railroad diagrams to understand the correct syntax for commands and
statements. The diagrams serve as quick references to the commands and
statements.
Constants are never enclosed in angle brackets (< >) and are in uppercase letters.
A variable is an item that represents data. You can replace the variable with data that
meets the requirements of the particular command or statement. When replacing a
variable with data, you must follow the rules defined for the particular command or
statement.
In the following example, BEGIN and END are constants, whereas <statement list> is a
variable. The constant BEGIN can be abbreviated since it is partially boldfaced.
• BE
• BEG
• BEGI
Constraints
Constraints are used in a railroad diagram to control progression through the diagram.
Constraints consist of symbols and unique railroad diagram line paths. They include
• Vertical bars
• Percent signs
• Right arrows
• Required items
• User-selected items
• Loops
• Bridges
Vertical Bar
The vertical bar symbol (|) represents the end of a railroad diagram and indicates the
command or statement can be followed by another command or statement.
Percent Sign
The percent sign (%) represents the end of a railroad diagram and indicates the
command or statement must be on a line by itself.
STOP %
Right Arrow
The right arrow symbol (>)
• Is used when the railroad diagram is too long to fit on one line and must continue
on the next
• Appears at the end of the first line, and again at the beginning of the next line
Required Item
A required item can be
• A constant
• A variable
• Punctuation
If the path you are following contains a required item, you must enter the item in the
command or statement; the required item cannot be omitted.
A required item appears on a horizontal line as a single entry or with other items.
Required items can also exist on horizontal lines within alternate paths, or nested
(lower-level) diagrams.
In the following example, the word EVENT is a required constant and <identifier> is a
required variable:
EVENT <identifier>
User-Selected Item
A user-selected item can be
• A constant
• A variable
• Punctuation
User-selected items appear one below the other in a vertical list. You can choose any
one of the items from the list. If the list also contains an empty path (solid line) above
the other items, none of the choices are required.
In the following railroad diagram, either the plus sign (+) or the minus sign (–) can be
entered before the required variable <arithmetic expression>, or the symbols can be
disregarded because the diagram also contains an empty path.
<arithmetic expression>
+
Loop
A loop represents an item or a group of items that you can repeat. A loop can span all
or part of a railroad diagram. It always consists of at least two horizontal lines, one
below the other, connected on both sides by vertical lines. The top line is a right-to-left
path that contains information about repeating the loop.
45 ; 7
8<field value>8
Bridge
A loop can also include a bridge. A bridge is an integer enclosed in sloping lines (/ \)
that
The bridge can precede both the contents of the loop and the return character (if any)
on the upper line of the loop.
Not all loops have bridges. Those that do not can be repeated any number of times
until all valid entries have been used.
In the first bridge example, you can enter LINKAGE or RUNTIME no more than two
times. In the second bridge example, you can enter LINKAGE or RUNTIME no more
than three times.
45 , 7
8/2\ LINKAGE 8
RUNTIME
45/2\7
8 LINKAGE 8
RUNTIME
In some bridges an asterisk (*) follows the number. The asterisk means that you must
cross that point in the diagram at least once. The maximum number of times that you
can cross that point is indicated by the number in the bridge.
45 , 7
8/2*\ LINKAGE 8
RUNTIME
In the previous bridge example, you must enter LINKAGE at least once but no more
than twice, and you can enter RUNTIME any number of times.
The following railroad diagram indicates only one path that requires the constant
LINKAGE and the variable <linkage mnemonic>:
%DIAG
LINKAGE; <linkage mnemonic> !
• Loops
• User-selected items
• A combination of loops and user-selected items
More complex railroad diagrams can consist of many alternate paths, or nested
(lower-level) diagrams, that show a further level of detail.
For example, the following railroad diagram consists of a top path and two alternate
paths. The top path includes
• An ampersand (&)
• Constants that are user-selected items
These constants are within a loop that can be repeated any number of times until
all options have been selected.
The first alternative path requires the ampersand and the required constant ADDRESS.
The second alternative path requires the ampersand followed by the required constant
ALTER and the required variable <new value>.
45 , 7
& 8 TYPE 8
D ASCII D
D BCL D
D DECIMAL D
D EBCDIC D
D HEX D
D OCTAL D
ADDRESS
ALTER <new value>
Example 1
<lock statement>
Example 2
<open statement>
Example 3
<generate statement>
Example 4
<entity reference declaration>
45 , 7
ENTITY REFERENCE 8<entity ref ID> ( <class ID> ) 8
Example 5
PS MODIFY 0
45 , 7
08<request number>80
D <request number> <request number> D
ALL
EXCEPTIONS
0
D 45 , 7 D
8<file attribute phrase>8
D
<print modifier phrase>
A declarators
description of, 3-12
initializing of, 3-28
addition operator, description of, 5-19
description of
address operator, description of, 5-17
bounds of array, 2-10
aggregate objects
multidimensional arrays, 2-10
description of
nonpaged one-dimensional
array bounds, 2-10
array, 10-44, 10-45
array types, 2-8
paged two-dimensional array, 10-44,
arrays and pointers, 2-11
10-45
multidimensional arrays, 2-10
pointers, 2-11
ALGOL program, calling C library, A-15
types, 2-8
<alloc.h>
of type, converting to pointer to type, 4-5
syntax summary of, G-13
subscripting operator, description of, 5-15
ALLOCMEMORY compiler control option,
types
subordinate option of FARHEAP
description of, 2-8
option, 10-23
format of, 2-8
AND-expression, production of, 5-29
ASCII
ANSI
compiler control option description
C language differences between A Series
of, 10-12
C, C-8
table of character sets, F-1
compiler control option description
ASERIES__&*__, preprocessor predefined
of, 10-11
macro name, 8-13
ANSI compiler control option, subordinate
ASERIES_SOURCE compiler control option,
option of LINT option, 10-36
subordinate option of LINT
argc parameters, using command-line-
option, 10-36
arguments, 9-13
asm
argument list types for declarators
storage class specifier
function prototype, 3-14
defaults of, 3-5
mixing formats, 3-14
lifetime rules of, 3-4
old style, 3-13
<assert.h>
argument passing
syntax summary of, G-14
example of, 7-6
assignment expressions, conversion of, 4-7
passing function arguments by value, 7-5
assignment-expression, production of, 5-26
argv parameters
associativity of operators
parsing rules
rules of, 5-12
description of, 9-14
auto
examples of WILD, 9-18
declaring in compound statement, 6-4
using command-line-arguments, 9-13
storage class specifier
arithmetic
defaults of, 3-5
data, initializing of, 3-26
lifetime rules of, 3-4
language differences of two’s
complement, C-11
array
conversions to, 4-6
macro predefined names, list of, 8-13 near&*__ pointer use of, 3-8
macro substitution, use of in MAKE MEMORY_MODEL, compiler control option
utility, C-23 description of, 10-43
MAKE command MERGE compiler control option
compiling C programs through compiling patch file in the Editor, 9-7
CANDE, 9-5 description of, 10-46
setting FILEKIND attribute, 9-5 MINIMAL
MAKE macro parsing rules description of, 9-14
use in MAKE utility, C-24 mixing formats
MAKE utility description of, 7-5
creating and updating files, C-17 in argument list for declarators, 3-14
file name conventions, C-19 mnemonic targets, use in MAKE utility, C-27
MAKE command line, C-18 multidimensional arrays
makefile rules, C-19 description of, 2-10
permissible flags, C-18 format of, 2-10
predfined macros, C-24 multiplication operator, description of, 5-20
use of
CC tool, C-24
command sequence, C-22 N
default rule, C-27
DIR directive, C-20 named label, as a type of labeled
LD tool, C-26 statement, 6-2
macro substitutions, C-23 naming functions, description of, 2-21
makefile, C-19 near&*__ type qualifier
mnemonic targets, C-27 allocating data in memory segment, 3-7,
target line, C-21 3-8
Makefile directories, use of in MAKE description of, 3-7, 3-8
utility, C-20 NEW, compiler control option description
MAKEFLAGS macro of, 10-46
use in MAKE utility, C-24 NEWSEQERR, compiler control option
malloc_t&*__, hidden parameter description description of, 10-47
of, A-9 NEWSOURCE file, use during
MAP, compiler control option description compilation, 9-1, 9-4
of, 10-43 nonlocal jumps <setjmp.h>
<math.h> syntax summary of, G-22
syntax summary of, G-21 nonpaged array rows, description of
mathematics <math.h> MEMORY_MODEL, 10-44, 10-45
syntax summary of, G-21 not equal to operator, description of, 5-31
mcp_bound_languages null character
determining available natural use of digraph character sequences, 1-25
languages, E-17 use of source lines, 1-24
procedure description for obtaining use of trigraph character sequences, 1-25
names of languages bound to null pointer
MCP, E-67 converting to an integral type, 4-3
memory layout converting to another pointer type, 4-5
use of extensions when porting C null statements
applications, C-16 description of, 6-5
memory management
syntax summary of <alloc.h>, G-13
memory segment allocation O
far&*__ data use of, 3-7
far&*__ pointer use of, 3-8
object files
near&*__ data use of, 3-7
*86002268-207*
All rights reserved.
8600 2268–207