]> diplodocus.org Git - nmh/blobdiff - sbr/seq_list.c
Add basic support for the STLS command in POP
[nmh] / sbr / seq_list.c
index f3a2673855a3ecb1aa5ebf5338ca3545e720cd34..0aef35e369730d779e5091214fcbb78fa1726c29 100644 (file)
@@ -6,8 +6,11 @@
  * complete copyright information.
  */
 
-#include <h/mh.h>
-#include <h/utils.h>
+#include "h/mh.h"
+#include "m_name.h"
+#include "seq_list.h"
+#include "seq_getnum.h"
+#include "h/utils.h"
 
 /* allocate this much buffer space at a time */
 #define MAXBUFFER 1024
@@ -100,5 +103,5 @@ seq_list(struct msgs *mp, char *seqname)
            bp += strlen(bp);
        }
     }
-    return (bp > buffer? buffer : NULL);
+    return bp > buffer ? buffer : NULL;
 }