blob: 8b7849a623fa59113dd492fe8c3ef0e06b0545ab (
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
67
68
69
70
71
72
|
/* misc.c -- miscellaneous common functions
Copyright (C) 1986, 1995, 1996 Free Software Foundation, Inc.
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; either version 2, or (at your option)
any later version.
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <config.h>
#include "system.h"
#include "strxtra.h"
#include "misc.h"
int
tree8_count_levels (unsigned int cardinality)
{
int levels = 1;
cardinality--;
while (cardinality >>= 3)
++levels;
return levels;
}
int
gets_past_00 (char *tok, FILE *input_FILE)
{
int got = 0;
int c;
do
{
do
{
got++;
c = getc (input_FILE);
*tok++ = c;
}
while (c > 0);
got++;
c = getc (input_FILE);
*tok++ = c;
}
while (c > 0);
return got - 2;
}
int
skip_past_00 (FILE *input_FILE)
{
int skipped = 0;
do
{
do
skipped++;
while (getc (input_FILE) > 0);
skipped++;
}
while (getc (input_FILE) > 0);
return skipped;
}
|