blob: e52b87a5763291a39710b4c6bc1118b3cbf51587 (
plain) (
blame)
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
|
#include <stdio.h>
#include <iostream>
#include <versekey.h>
#include <rawtext.h>
#include <zcom.h>
#include <rawcom.h>
#include <rawgbf.h>
#include <rawfiles.h>
#include <stdlib.h>
int main(int argc, char **argv)
{
int loop;
int max;
RawFiles personal("modules/comments/rawfiles/personal/", "MINE", "Personal Comments");
VerseKey mykey;
if (argc < 3) {
fprintf(stderr, "usage: %s <\"comment\"> <\"verse\"> [count] [disable AutoNormalization]\n", argv[0]);
exit(-1);
}
if (argc > 4)
mykey.AutoNormalize(0); // Turn off autonormalize if 3 args to allow for intros
// This is kludgy but at lease you can try it
// with something like: sword "Matthew 1:0" 1 1
mykey = argv[2];
mykey.Persist(1);
personal.SetKey(mykey);
max = (argc < 4) ? 1 : atoi(argv[3]);
for (loop = 0; loop < max; loop++) {
personal << argv[1];
mykey++;
}
std::cout << "Added Comment" << std::endl;
return 0;
}
|