From b333edeefebac6d3f75258acbe9933e22cc0d058 Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Sun, 23 Apr 2023 18:31:08 +0300 Subject: [PATCH] public: crtlib: remove unused Q_strlwr macro --- public/crtlib.h | 1 - 1 file changed, 1 deletion(-) diff --git a/public/crtlib.h b/public/crtlib.h index 3e8d07a7..15c1abca 100644 --- a/public/crtlib.h +++ b/public/crtlib.h @@ -59,7 +59,6 @@ const char *Q_buildcommit( void ); // // crtlib.c // -#define Q_strlwr( in, out ) Q_strnlwr( in, out, 99999 ) void Q_strnlwr( const char *in, char *out, size_t size_out ); #define Q_strlen( str ) (( str ) ? strlen(( str )) : 0 ) size_t Q_colorstr( const char *string );