view src/post.h @ 87:bf8c97460fd7 noffle

[svn] Preserve newslines and spaces in header lines
author bears
date Thu, 18 May 2000 13:11:05 +0100
parents 32ba1198c6fa
children 1fcdced0246e
line wrap: on
line source

/*
  post.h

  Take a single article received in its entirety without an overview
  (i.e. received via at the server via a POST), and add it to the database
  and (possibly multiple) group(s).

  $Id: post.h 51 2000-05-05 23:49:38Z uh1763 $
*/

#ifndef POST_H
#define POST_H

#if HAVE_CONFIG_H
#include <config.h>
#endif

#include "common.h"

/* Register an article for posting. */
Bool
Post_open( const char * text );

/* Add the article to a group. */
Bool
Post_add ( const char * grp );
   
/* Done with article - tidy up. */
void
Post_close( void );

#endif