]> git.deb.at Git - pkg/abook.git/blobdiff - abook.h
reformat changelog entry
[pkg/abook.git] / abook.h
diff --git a/abook.h b/abook.h
index 564caf39b946725839cab05b5e7fa0600b3f906a..0631b8f0f858ff6fbbce6420e454d7687069f04e 100644 (file)
--- a/abook.h
+++ b/abook.h
@@ -49,6 +49,9 @@ int           strncasecmp (const char *, const char *, size_t);
 
 #define ISSPACE(c)     isspace((unsigned char)c)
 
+#define SKIPWS(c)      while(*(c) && ISSPACE(*(c))) c++
+#define SKIPNONWS(c)   while(*(c) && ! ISSPACE(*(c))) c++
+
 #ifndef DEBUG
 #      define NDEBUG   1
 #else