replace SKIPWS with a proper inline func with the right API.
[apps/madmutt.git] / lib / str.c
index b3fc401..a91dd17 100644 (file)
--- a/lib/str.c
+++ b/lib/str.c
@@ -92,11 +92,6 @@ int str_eq (const char* s1, const char* s2) {
   return (m_strncmp(s1, s2, l) == 0);
 }
 
-char* str_skip_initws (char* s) {
-  SKIPWS (s);
-  return (s);
-}
-
 void str_skip_trailws (char *s) {
   char *p;