1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
// Copyright (c) 1998-1999 Peter Karlsson
//
// $Id: utility.h,v 1.3 1999/07/16 00:01:09 peter Exp $
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, version 2
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#ifndef __UTILITY_H
#define __UTILITY_H
#include <string>
#include <time.h>
// MS-DOS style time stamp
#if defined(__GNUC__) || defined(__EMX__)
# pragma pack(1)
#endif
struct stamp_s
{
struct
{
unsigned short da: 5;
unsigned short mo: 4;
unsigned short yr: 7;
} date;
struct
{
unsigned short ss: 5;
unsigned short mm: 6;
unsigned short hh: 5;
} time;
};
#if defined(__GNUC__) || defined(__EMX__)
# pragma pack()
#endif
// Compare two strings case in-sensitively
int fcompare(const string &s1, const string &s2);
// Convert DOS style time-stamp to time_t
time_t stampToTimeT(struct stamp_s *st);
// Convert FTSC style time-stamp to time_t
time_t asciiToTimeT(const char *datetime);
// Separate kludges and body
void fixupctrlbuffer(char *body_p, char *ctrl_p);
#endif
|