mirror of
https://github.com/raysan5/raylib.git
synced 2025-09-07 11:58:13 +00:00
REVIEWED: Examples section comments, for better organization and consistency
This commit is contained in:
@@ -23,6 +23,9 @@
|
||||
// this text will be scanned to get all the required codepoints
|
||||
static char *text = "いろはにほへと ちりぬるを\nわかよたれそ つねならむ\nうゐのおくやま けふこえて\nあさきゆめみし ゑひもせす";
|
||||
|
||||
//------------------------------------------------------------------------------------
|
||||
// Module Functions Declaration
|
||||
//------------------------------------------------------------------------------------
|
||||
// Remove codepoint duplicates if requested
|
||||
static int *CodepointRemoveDuplicates(int *codepoints, int codepointCount, int *codepointResultCount);
|
||||
|
||||
@@ -128,6 +131,9 @@ int main(void)
|
||||
return 0;
|
||||
}
|
||||
|
||||
//------------------------------------------------------------------------------------
|
||||
// Module Functions Definition
|
||||
//------------------------------------------------------------------------------------
|
||||
// Remove codepoint duplicates if requested
|
||||
// WARNING: This process could be a bit slow if there text to process is very long
|
||||
static int *CodepointRemoveDuplicates(int *codepoints, int codepointCount, int *codepointsResultCount)
|
||||
|
Reference in New Issue
Block a user