Auto Tiler Library
|
Functions | |
char * | AppendNames (char *Name1, char *Name2) |
Return the concatenation of 2 names. More... | |
char * | AppendIndex (char *Name, unsigned int Index) |
Return the concatenation of 1 names and an index. More... | |
void | GenTilingError (const char *Message,...) |
Generates an error message and aborts execution. More... | |
void | GenTilingWarning (const char *Message,...) |
Generates a warning message. Does not abort. More... | |
Service Functions
char* AppendIndex | ( | char * | Name, |
unsigned int | Index | ||
) |
Return the concatenation of 2 names.
This is usefull to create names derivatives when writing generators.
Name | Name prefix |
Index | Index to be appended |
char* AppendNames | ( | char * | Name1, |
char * | Name2 | ||
) |
Return the concatenation of 2 names.
This is usefull to create names derivatives when writing generators.
Name1 | First name passed as a C string |
Name2 | Second name passed as a C string |
void GenTilingError | ( | const char * | Message, |
... | |||
) |
Generates an error message and aborts execution
Message | A format string similar to the one used in C printf() |
... | Arguments used by the format sting in Message |
void GenTilingWarning | ( | const char * | Message, |
... | |||
) |
Generates a warning message. Does not abort.
Message | A format string similar to the one used in C printf() |
... | Arguments used by the format sting in Message |