| 114 | ////////////////////////////////////////////////////////////////////////// |
| 115 | |
| 116 | char* _glfw_strdup(const char* source) |
| 117 | { |
| 118 | const size_t length = strlen(source); |
| 119 | char* result = calloc(length + 1, 1); |
| 120 | strcpy(result, source); |
| 121 | return result; |
| 122 | } |
| 123 | |
| 124 | float _glfw_fminf(float a, float b) |
| 125 | { |
no outgoing calls
no test coverage detected