Shorten GPLv2 licence text in header of each source file
[dockapps/wmnotify.git] / src / pop3.h
index 6f018ce..578482b 100644 (file)
@@ -1,4 +1,10 @@
-/* pop3.h */
+/*
+ * pop3.h
+ *
+ * Copyright (C) 2003 Hugo Villeneuve <hugo@hugovil.com>
+ *
+ * This file is released under the GPLv2
+ */
 
 #ifndef POP3_H
 #define POP3_H 1
@@ -12,7 +18,6 @@
 #include <stdlib.h>
 #include <unistd.h>
 
-
 /* Exported variables */
 #undef _SCOPE_
 #ifdef POP3_M
 #  define _SCOPE_ extern
 #endif
 
-/* POP3 responses may be up to 512 characters long, including the terminating
-   CRLF. */
-#define POP3_IN_BUF_SIZE 512
+#define POP3_ENDL "\r\n" /* CRLF */
 
 #define POP3_CMD_USERNAME "USER"
 #define POP3_CMD_PASSWORD "PASS"
 #define POP3_CMD_STAT     "STAT"
 #define POP3_CMD_QUIT     "QUIT"
-#define POP3_ENDL "\r\n" /* CRLF */
-
 
 #define POP3_RSP_SUCCESS "+OK"
 #define POP3_RSP_FAILURE "-ERR"
 
-
-int
-POP3_CheckForNewMail( void );
-
+int POP3_CheckForNewMail(void);
 
 #endif /* POP3_H */