Add shared min and max functions for int

This commit is contained in:
Camilla Löwy
2022-03-14 16:01:34 +01:00
parent 9cc252a406
commit 3ee5031fd7
6 changed files with 26 additions and 26 deletions
+2
View File
@@ -998,6 +998,8 @@ const char* _glfwGetVulkanResultString(VkResult result);
size_t _glfwEncodeUTF8(char* s, uint32_t codepoint);
char* _glfw_strdup(const char* source);
int _glfw_min(int a, int b);
int _glfw_max(int a, int b);
float _glfw_fminf(float a, float b);
float _glfw_fmaxf(float a, float b);