Move declarations of GetCodepoint() and CodepointToUTF8() (#155)

This commit is contained in:
Jaedeok Kim 2021-09-13 01:04:22 +09:00 committed by GitHub
parent 469496d177
commit c1af7c3edd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1235,6 +1235,9 @@ static const char **TextSplit(const char *text, char delimiter, int *count);
static int TextToInteger(const char *text); // Get integer value from text
static void DrawRectangleGradientV(int posX, int posY, int width, int height, Color color1, Color color2); // Draw rectangle vertical gradient
static int GetCodepoint(const char *text, int *bytesProcessed); // Get next codepoint in a UTF-8 encoded text
static const char *CodepointToUTF8(int codepoint, int *byteSize); // Encode codepoint into UTF-8 text (char array size returned as parameter)
//-------------------------------------------------------------------------------
#endif // RAYGUI_STANDALONE
@ -1253,9 +1256,6 @@ static const char **GuiTextSplit(const char *text, int *count, int *textRow);
static Vector3 ConvertHSVtoRGB(Vector3 hsv); // Convert color data from HSV to RGB
static Vector3 ConvertRGBtoHSV(Vector3 rgb); // Convert color data from RGB to HSV
static const char *CodepointToUTF8(int codepoint, int *byteSize); // Encode codepoint into UTF-8 text (char array size returned as parameter)
static int GetCodepoint(const char *text, int *bytesProcessed); // Get next codepoint in a UTF-8 encoded text
//----------------------------------------------------------------------------------
// Gui Setup Functions Definition
//----------------------------------------------------------------------------------