blob: d4877c9515cffb3b2dfa73eaaa422792da8160de (
plain)
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
60
61
62
63
64
65
66
|
/******************************************************************************
(C) Nick Marley, 2001 -
This software is distributed under the GNU Lesser General Public Licence.
Please read and understand the comments at the top of vf_iface.h before use!
FILE
$Workfile$
$Revision: 1.2 $
$Author: tilda $
ORIGINAL AUTHOR
Nick Marley
DESCRIPTION
Sample code for the vformat library.
REFERENCES
(none)
MODIFICATION HISTORY
* $Log: split_phonebook.h,v $
* Revision 1.2 2001/10/24 05:29:24 tilda
* Tidy up.
*
* Revision 1.1.1.1 2001/10/16 05:49:57 tilda
* Initial Import to CVS.
*
*******************************************************************************/
#ifndef NORCSID
static const char split_phonebook_h_vss_id[] = "$Header: /cvsroot/vformat/build/samples/split_phonebook.h,v 1.2 2001/10/24 05:29:24 tilda Exp $";
#endif
/*=============================================================================*
Public Includes
*=============================================================================*/
/* None */
/*============================================================================*
Public Defines
*============================================================================*/
/* None */
/*============================================================================*
Public Functions
*============================================================================*/
/*----------------------------------------------------------------------------*
* NAME
* split_phonebook()
*
* DESCRIPTION
* Read in the indicated file which is assumed to be a list of VCARDs.
* The component cards are written out to individual files.
*
* RETURNS
* TRUE <=> read / written OK.
*----------------------------------------------------------------------------*/
extern bool_t split_phonebook(
const char *p_filename,
const char *p_outdir
);
|