|
|||||||||||
|
Technical Support On-Line Manuals C166 User's Guide |
C166 User's Guide#includeThe #include </b> directive causes the C preprocessor to include the contents of the specified file in the compilation before continuing with the rest of the current file. The #include </b> directive may be used to specify two different types of header (or include) files: system header files and user header files. System header files are included as follows: #include <filename> These include files are installed in the \INC\ folder. They are a part of the Keil development tools release and should not be modified. When a system header file is specified, the compiler searches for the file in the following folders in order: User header files are included as follows: #include "filename" These include files are user-created and may reside anywhere on your computer. When a user header file is specified, the compiler searches for the file in the following folders in order:
Note
Refer to Header Files for a complete description of how to use include files in your C programs. | ||||||||||
|
|||||||||||