clibs
Tiny but handy utility libraries for C
All Files Functions Typedefs Macros Pages
Macros
platform.h File Reference

Platform-specific data. More...

Go to the source code of this file.

Macros

#define END_OF_LINE   "\n"
 End of line of specific host. More...
 
#define DIRECTORY_SEPARATOR   "/"
 Directory separator of specific host. More...
 
#define SEARCH_PATH_SEPARATOR   ":"
 Search path separator of specific host. More...
 

Detailed Description

Platform-specific data.

Author
ByteBard

The macro definitions seen in this document represent the platform data of Unix.

Macro Definition Documentation

◆ DIRECTORY_SEPARATOR

#define DIRECTORY_SEPARATOR   "/"

Directory separator of specific host.

Currently, DIRECTORY_SEPARATOR works on Windows and Unix.

◆ END_OF_LINE

#define END_OF_LINE   "\n"

End of line of specific host.

C will handle platform-specific end of line automatically. Hence, we always set END_OF_LINE the same value.

◆ SEARCH_PATH_SEPARATOR

#define SEARCH_PATH_SEPARATOR   ":"

Search path separator of specific host.

Currently, SEARCH_PATH_SEPARATOR works on Windows and Unix.