identifier for each entry

we need to know where each entry begins, then we can work in the anki integration
This commit is contained in:
Konstantin 2023-06-05 23:22:44 -04:00 committed by GitHub
parent e48caa4c4b
commit e9ddba49f0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,15 +3,26 @@
int main()
{
int prevseen = 0;
static char *buf = NULL;
static size_t size = 0;
long n = 1;
while(getline(&buf, &size, stdin) > 0)
{
if (n++ < 5) /* overflow possible */
if (n++ < 5)
continue;
if (strncmp(buf,"-->", 3) == 0)
putchar('\n');
{
if (!prevseen)
{
prevseen = 1;
putchar('\n');
}
else
{
prevseen = 0;
}
}
else if (buf[0] != 10)
fputs(buf, stdout);
}