diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-10-17 17:44:12 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-10-17 17:44:12 +0000 |
commit | aec15b99bf6b340227895ecfa6136e9d638c701a (patch) | |
tree | 54ea8d79169dd127d239a7f304c1007eb473ea6f /imap.c | |
parent | 6acb0b4730875ea953f04df5fa6c5680fd98ca09 (diff) | |
download | fetchmail-aec15b99bf6b340227895ecfa6136e9d638c701a.tar.gz fetchmail-aec15b99bf6b340227895ecfa6136e9d638c701a.tar.bz2 fetchmail-aec15b99bf6b340227895ecfa6136e9d638c701a.zip |
Remove all those obnoxious block comments.
svn path=/trunk/; revision=345
Diffstat (limited to 'imap.c')
-rw-r--r-- | imap.c | 21 |
1 files changed, 5 insertions, 16 deletions
@@ -1,28 +1,17 @@ -/* Copyright 1996 by Eric S. Raymond +/* + * imap.c -- IMAP2bis protocol methods + * + * Copyright 1996 by Eric S. Raymond * All rights reserved. * For license terms, see the file COPYING in this directory. */ -/*********************************************************************** - module: imap.c - project: fetchmail - programmer: Eric S. Raymond - description: IMAP client code - - ***********************************************************************/ - #include <config.h> #include <stdio.h> #include <string.h> #include "socket.h" #include "fetchmail.h" -/********************************************************************* - - Method declarations for IMAP - - *********************************************************************/ - static int count, seen; int imap_ok (socket, argbuf) @@ -201,4 +190,4 @@ struct hostrec *queryctl; return(do_protocol(queryctl, &imap)); } - +/* imap.c ends here */ |