include/ack.h

/* [<][>][^][v][top]
[bottom][index][help] */

FUNCTIONS

This source file includes following functions.

   1 #ifndef ACK_H
   2 #define ACK_H 
   3 
   4 #include <stdarg.h>
   5 #include <stdio.h>
   6 #include <strings.h>
   7 #include <string>
   8 #include <unistd.h>
   9 #include <stdlib.h>
  10 #include <iostream.h>
  11 #include <fstream>
  12 
  13 //#ifdef __cplusplus
  14 //extern "C" {
  15 //#endif
  16 
  17 
  18 void AK_add_to_ack(char * filename, char * fmt, ...);
  19 
  20 char * AK_ack_file_name_generate( const char * tmpdir, const char * prefix);
  21 
  22 void AK_send_ack( const char * filename, const char * to_address, const char * mailercommand);
  23 
  24 void AK_delete_ack( const char * filename );
  25 
  26 void AK_log_ack( const char * filename, const char * log_file );
  27 
  28 void AK_add_to_ack_string(const char * file_name, const string msg);
  29 
  30 //#ifdef __cplusplus
  31 // }
  32 //#endif
  33 
  34 //void AK_add_to_ack_string(const char * file_name, const string msg);
  35 
  36 
  37 #endif
  38 

/* [<][>][^][v][top][bottom][index][help] */