chiark / gitweb /
More documentation.
[tripe] / servutil.c
1 /* -*-c-*-
2  *
3  * $Id: servutil.c,v 1.2 2001/02/16 21:41:06 mdw Exp $
4  *
5  * Various handy server-only utilities
6  *
7  * (c) 2001 Straylight/Edgeware
8  */
9
10 /*----- Licensing notice --------------------------------------------------* 
11  *
12  * This file is part of Trivial IP Encryption (TrIPE).
13  *
14  * TrIPE is free software; you can redistribute it and/or modify
15  * it under the terms of the GNU General Public License as published by
16  * the Free Software Foundation; either version 2 of the License, or
17  * (at your option) any later version.
18  * 
19  * TrIPE is distributed in the hope that it will be useful,
20  * but WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  * GNU General Public License for more details.
23  * 
24  * You should have received a copy of the GNU General Public License
25  * along with TrIPE; if not, write to the Free Software Foundation,
26  * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
27  */
28
29 /*----- Revision history --------------------------------------------------* 
30  *
31  * $Log: servutil.c,v $
32  * Revision 1.2  2001/02/16 21:41:06  mdw
33  * Use new spare buffer for building MP textual representations.  Add a
34  * function for making human-readable time strings.
35  *
36  * Revision 1.1  2001/02/03 20:26:37  mdw
37  * Initial checkin.
38  *
39  */
40
41 /*----- Header files ------------------------------------------------------*/
42
43 #include "tripe.h"
44
45 /*----- Main code ---------------------------------------------------------*/
46
47 /* --- @mpstr@ --- *
48  *
49  * Arguments:   @mp *m@ = a multiprecision integer
50  *
51  * Returns:     A pointer to the integer's textual representation.
52  *
53  * Use:         Converts a multiprecision integer to a string.  Corrupts
54  *              @buf_t@.
55  */
56
57 const char *mpstr(mp *m)
58 {
59   if (mp_writestring(m, (char *)buf_t, sizeof(buf_t), 10))
60     return ("<failed>");
61   return ((const char *)buf_t);
62 }
63
64 /* --- @timestr@ --- *
65  *
66  * Arguments:   @time_t t@ = a time to convert
67  *
68  * Returns:     A pointer to a textual representation of the time.
69  *
70  * Use:         Converts a time to a textual representation.  Corrupts
71  *              @buf_t@.
72  */
73
74 const char *timestr(time_t t)
75 {
76   struct tm *tm;
77   if (!t)
78     return ("NEVER");
79   tm = localtime(&t);
80   strftime((char *)buf_t, sizeof(buf_t), "%Y-%m-%dT%H:%M:%S", tm);
81   return ((const char *)buf_t);
82 }
83
84 /*----- That's all, folks -------------------------------------------------*/