utils.c 17.9 KB
Newer Older
Chris Allegretta's avatar
Chris Allegretta committed
1
/* $Id$ */
Chris Allegretta's avatar
Chris Allegretta committed
2
3
4
/**************************************************************************
 *   utils.c                                                              *
 *                                                                        *
5
6
 *   Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007   *
 *   Free Software Foundation, Inc.                                       *
Chris Allegretta's avatar
Chris Allegretta committed
7
8
 *   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 *
9
 *   the Free Software Foundation; either version 3, or (at your option)  *
Chris Allegretta's avatar
Chris Allegretta committed
10
11
 *   any later version.                                                   *
 *                                                                        *
12
13
14
15
 *   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.                             *
Chris Allegretta's avatar
Chris Allegretta committed
16
17
18
 *                                                                        *
 *   You should have received a copy of the GNU General Public License    *
 *   along with this program; if not, write to the Free Software          *
19
20
 *   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA            *
 *   02110-1301, USA.                                                     *
Chris Allegretta's avatar
Chris Allegretta committed
21
22
23
 *                                                                        *
 **************************************************************************/

24
#include "proto.h"
25

Chris Allegretta's avatar
Chris Allegretta committed
26
#include <string.h>
27
28
#include <stdio.h>
#include <unistd.h>
29
#include <pwd.h>
Chris Allegretta's avatar
Chris Allegretta committed
30
#include <ctype.h>
31
#include <errno.h>
Chris Allegretta's avatar
Chris Allegretta committed
32

33
/* Return the number of decimal digits in n. */
34
int digits(size_t n)
35
{
36
    int i;
37

38
39
40
41
42
43
    if (n == 0)
	i = 1;
    else {
	for (i = 0; n != 0; n /= 10, i++)
	    ;
    }
44
45
46
47

    return i;
}

48
/* Return the user's home directory.  We use $HOME, and if that fails,
49
 * we fall back on the home directory of the effective user ID. */
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
void get_homedir(void)
{
    if (homedir == NULL) {
	const char *homenv = getenv("HOME");

	if (homenv == NULL) {
	    const struct passwd *userage = getpwuid(geteuid());

	    if (userage != NULL)
		homenv = userage->pw_dir;
	}
	homedir = mallocstrcpy(NULL, homenv);
    }
}

David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
65
66
67
/* Read a ssize_t from str, and store it in *val (if val is not NULL).
 * On error, we return FALSE and don't change *val.  Otherwise, we
 * return TRUE. */
68
bool parse_num(const char *str, ssize_t *val)
69
70
71
72
73
{
    char *first_error;
    ssize_t j;

    assert(str != NULL);
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
74

75
    j = (ssize_t)strtol(str, &first_error, 10);
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
76

77
    if (errno == ERANGE || *str == '\0' || *first_error != '\0')
78
	return FALSE;
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
79

80
81
    if (val != NULL)
	*val = j;
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
82

83
    return TRUE;
84
85
}

David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
86
87
88
/* Read two ssize_t's, separated by a comma, from str, and store them in
 * *line and *column (if they're not both NULL).  Return FALSE on error,
 * or TRUE otherwise. */
89
bool parse_line_column(const char *str, ssize_t *line, ssize_t *column)
90
{
91
    bool retval = TRUE;
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
92
    const char *comma;
93
94
95
96
97

    assert(str != NULL);

    comma = strchr(str, ',');

98
    if (comma != NULL && column != NULL) {
99
	if (!parse_num(comma + 1, column))
100
101
102
103
104
	    retval = FALSE;
    }

    if (line != NULL) {
	if (comma != NULL) {
105
106
	    char *str_line = mallocstrncpy(NULL, str, comma - str + 1);
	    str_line[comma - str] = '\0';
107

108
	    if (str_line[0] != '\0' && !parse_num(str_line, line))
109
110
111
112
113
114
		retval = FALSE;

	    free(str_line);
	} else if (!parse_num(str, line))
	    retval = FALSE;
    }
115

116
    return retval;
117
118
}

Chris Allegretta's avatar
Chris Allegretta committed
119
/* Fix the memory allocation for a string. */
120
void align(char **str)
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
121
{
122
    assert(str != NULL);
123

124
125
    if (*str != NULL)
	*str = charealloc(*str, strlen(*str) + 1);
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
126
127
}

Chris Allegretta's avatar
Chris Allegretta committed
128
129
/* Null a string at a certain index and align it. */
void null_at(char **data, size_t index)
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
130
{
Chris Allegretta's avatar
Chris Allegretta committed
131
    assert(data != NULL);
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
132

Chris Allegretta's avatar
Chris Allegretta committed
133
    *data = charealloc(*data, index + 1);
Chris Allegretta's avatar
Chris Allegretta committed
134
    (*data)[index] = '\0';
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
135
136
}

Chris Allegretta's avatar
Chris Allegretta committed
137
138
139
/* For non-null-terminated lines.  A line, by definition, shouldn't
 * normally have newlines in it, so encode its nulls as newlines. */
void unsunder(char *str, size_t true_len)
Chris Allegretta's avatar
Chris Allegretta committed
140
{
Chris Allegretta's avatar
Chris Allegretta committed
141
    assert(str != NULL);
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
142

143
    for (; true_len > 0; true_len--, str++) {
Chris Allegretta's avatar
Chris Allegretta committed
144
145
	if (*str == '\0')
	    *str = '\n';
146
    }
Chris Allegretta's avatar
Chris Allegretta committed
147
}
Chris Allegretta's avatar
Chris Allegretta committed
148

Chris Allegretta's avatar
Chris Allegretta committed
149
/* For non-null-terminated lines.  A line, by definition, shouldn't
150
 * normally have newlines in it, so decode its newlines as nulls. */
Chris Allegretta's avatar
Chris Allegretta committed
151
152
153
void sunder(char *str)
{
    assert(str != NULL);
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
154

155
    for (; *str != '\0'; str++) {
Chris Allegretta's avatar
Chris Allegretta committed
156
157
	if (*str == '\n')
	    *str = '\0';
158
    }
Chris Allegretta's avatar
Chris Allegretta committed
159
160
}

David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
161
162
163
/* These functions, ngetline() (originally getline()) and ngetdelim()
 * (originally getdelim()), were adapted from GNU mailutils 0.5
 * (mailbox/getline.c).  Here is the notice from that file, after
164
 * converting to the GPL via LGPL clause 3, and with the Free Software
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
165
 * Foundation's address and the copyright years updated:
166
167
 *
 * GNU Mailutils -- a suite of utilities for electronic mail
168
169
 * Copyright (C) 1999, 2000, 2001, 2002, 2004, 2005, 2006, 2007
 * Free Software Foundation, Inc.
170
171
 *
 * This library is free software; you can redistribute it and/or
172
 * modify it under the terms of the GNU General Public License as
173
 * published by the Free Software Foundation; either version 3 of the
174
 * License, or (at your option) any later version.
175
176
177
178
 *
 * This library 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
179
 * General Public License for more details.
180
 *
181
182
 * You should have received a copy of the GNU General Public License
 * along with this library; if not, write to the Free Software
183
184
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301, USA. */
185

186
#if !defined(NANO_TINY) && defined(ENABLE_NANORC)
187
#ifndef HAVE_GETLINE
188
/* This function is equivalent to getline(). */
189
190
191
192
193
194
195
ssize_t ngetline(char **lineptr, size_t *n, FILE *stream)
{
    return getdelim(lineptr, n, '\n', stream);
}
#endif

#ifndef HAVE_GETDELIM
196
/* This function is equivalent to getdelim(). */
197
198
199
200
201
202
ssize_t ngetdelim(char **lineptr, size_t *n, int delim, FILE *stream)
{
    size_t indx = 0;
    int c;

    /* Sanity checks. */
203
204
    if (lineptr == NULL || n == NULL || stream == NULL ||
	fileno(stream) == -1) {
205
206
207
	errno = EINVAL;
	return -1;
    }
208
209
210

    /* Allocate the line the first time. */
    if (*lineptr == NULL) {
211
	*n = MAX_BUF_SIZE;
212
	*lineptr = charalloc(*n);
213
214
215
216
217
    }

    while ((c = getc(stream)) != EOF) {
	/* Check if more memory is needed. */
	if (indx >= *n) {
218
	    *n += MAX_BUF_SIZE;
219
	    *lineptr = charealloc(*lineptr, *n);
220
221
	}

David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
222
	/* Put the result in the line. */
223
224
225
226
227
228
229
230
231
	(*lineptr)[indx++] = (char)c;

	/* Bail out. */
	if (c == delim)
	    break;
    }

    /* Make room for the null character. */
    if (indx >= *n) {
232
	*n += MAX_BUF_SIZE;
233
	*lineptr = charealloc(*lineptr, *n);
234
235
    }

David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
236
    /* Null-terminate the buffer. */
237
    null_at(lineptr, indx++);
238
    *n = indx;
239

David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
240
241
    /* The last line may not have the delimiter.  We have to return what
     * we got, and the error will be seen on the next iteration. */
242
243
244
    return (c == EOF && (indx - 1) == 0) ? -1 : indx - 1;
}
#endif
245
#endif /* !NANO_TINY && ENABLE_NANORC */
246

247
#ifdef HAVE_REGEX_H
248
249
250
/* Do the compiled regex in preg and the regex in string match the
 * beginning or end of a line? */
bool regexp_bol_or_eol(const regex_t *preg, const char *string)
251
252
253
254
255
{
    return (regexec(preg, string, 0, NULL, 0) == 0 &&
	regexec(preg, string, 0, NULL, REG_NOTBOL | REG_NOTEOL) ==
	REG_NOMATCH);
}
256
#endif
257

258
#ifndef DISABLE_SPELLER
259
260
261
262
263
264
265
266
267
/* Is the word starting at position pos in buf a whole word? */
bool is_whole_word(size_t pos, const char *buf, const char *word)
{
    char *p = charalloc(mb_cur_max()), *r = charalloc(mb_cur_max());
    size_t word_end = pos + strlen(word);
    bool retval;

    assert(buf != NULL && pos <= strlen(buf) && word != NULL);

268
269
    parse_mbchar(buf + move_mbleft(buf, pos), p, NULL);
    parse_mbchar(buf + word_end, r, NULL);
270
271
272
273
274
275
276
277
278
279
280
281
282

    /* If we're at the beginning of the line or the character before the
     * word isn't a non-punctuation "word" character, and if we're at
     * the end of the line or the character after the word isn't a
     * non-punctuation "word" character, we have a whole word. */
    retval = (pos == 0 || !is_word_mbchar(p, FALSE)) &&
	(word_end == strlen(buf) || !is_word_mbchar(r, FALSE));

    free(p);
    free(r);

    return retval;
}
283
#endif /* !DISABLE_SPELLER */
284

285
286
287
288
289
290
/* If we are searching backwards, we will find the last match that
 * starts no later than start.  Otherwise we find the first match
 * starting no earlier than start.  If we are doing a regexp search, we
 * fill in the global variable regmatches with at most 9 subexpression
 * matches.  Also, all .rm_so elements are relative to the start of the
 * whole match, so regmatches[0].rm_so == 0. */
Chris Allegretta's avatar
Chris Allegretta committed
291
const char *strstrwrapper(const char *haystack, const char *needle,
292
	const char *start)
Chris Allegretta's avatar
Chris Allegretta committed
293
{
294
    /* start can be 1 character before the start or after the end of the
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
295
     * line.  In either case, we just say no match was found. */
296
297
    if ((start > haystack && *(start - 1) == '\0') || start < haystack)
	return NULL;
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
298

299
    assert(haystack != NULL && needle != NULL && start != NULL);
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
300

301
#ifdef HAVE_REGEX_H
302
    if (ISSET(USE_REGEXP)) {
303
#ifndef NANO_TINY
304
	if (ISSET(BACKWARDS_SEARCH)) {
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
305
306
	    if (regexec(&search_regexp, haystack, 1, regmatches,
		0) == 0 && haystack + regmatches[0].rm_so <= start) {
307
308
		const char *retval = haystack + regmatches[0].rm_so;

David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
309
		/* Search forward until there are no more matches. */
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
310
311
312
313
		while (regexec(&search_regexp, retval + 1, 1,
			regmatches, REG_NOTBOL) == 0 &&
			retval + regmatches[0].rm_so + 1 <= start)
		    retval += regmatches[0].rm_so + 1;
314
315
316
317
318
		/* Finally, put the subexpression matches in global
		 * variable regmatches.  The REG_NOTBOL flag doesn't
		 * matter now. */
		regexec(&search_regexp, retval, 10, regmatches, 0);
		return retval;
Chris Allegretta's avatar
Chris Allegretta committed
319
	    }
320
	} else
321
#endif /* !NANO_TINY */
322
	if (regexec(&search_regexp, start, 10, regmatches,
323
		(start > haystack) ? REG_NOTBOL : 0) == 0) {
324
	    const char *retval = start + regmatches[0].rm_so;
325
326
327

	    regexec(&search_regexp, retval, 10, regmatches, 0);
	    return retval;
328
	}
329
	return NULL;
330
    }
331
#endif /* HAVE_REGEX_H */
332
#if !defined(NANO_TINY) || !defined(DISABLE_SPELLER)
333
    if (ISSET(CASE_SENSITIVE)) {
334
#ifndef NANO_TINY
335
	if (ISSET(BACKWARDS_SEARCH))
336
	    return revstrstr(haystack, needle, start);
337
	else
338
#endif
339
	    return strstr(start, needle);
340
    }
341
342
#endif /* !DISABLE_SPELLER || !NANO_TINY */
#ifndef NANO_TINY
343
    else if (ISSET(BACKWARDS_SEARCH))
344
	return mbrevstrcasestr(haystack, needle, start);
345
#endif
346
    return mbstrcasestr(start, needle);
Chris Allegretta's avatar
Chris Allegretta committed
347
}
Chris Allegretta's avatar
Chris Allegretta committed
348

349
350
351
352
/* This is a wrapper for the perror() function.  The wrapper temporarily
 * leaves curses mode, calls perror() (which writes to stderr), and then
 * reenters curses mode, updating the screen in the process.  Note that
 * nperror() causes the window to flicker once. */
353
354
void nperror(const char *s)
{
355
356
357
    endwin();
    perror(s);
    doupdate();
358
359
}

360
361
362
/* This is a wrapper for the malloc() function that properly handles
 * things when we run out of memory.  Thanks, BG, many people have been
 * asking for this... */
Chris Allegretta's avatar
Chris Allegretta committed
363
void *nmalloc(size_t howmuch)
Chris Allegretta's avatar
Chris Allegretta committed
364
{
Chris Allegretta's avatar
Chris Allegretta committed
365
    void *r = malloc(howmuch);
Chris Allegretta's avatar
Chris Allegretta committed
366

Chris Allegretta's avatar
Chris Allegretta committed
367
368
    if (r == NULL && howmuch != 0)
	die(_("nano is out of memory!"));
369

Chris Allegretta's avatar
Chris Allegretta committed
370
    return r;
371
372
}

373
374
/* This is a wrapper for the realloc() function that properly handles
 * things when we run out of memory. */
Chris Allegretta's avatar
Chris Allegretta committed
375
void *nrealloc(void *ptr, size_t howmuch)
Chris Allegretta's avatar
Chris Allegretta committed
376
{
Chris Allegretta's avatar
Chris Allegretta committed
377
    void *r = realloc(ptr, howmuch);
Chris Allegretta's avatar
Chris Allegretta committed
378

Chris Allegretta's avatar
Chris Allegretta committed
379
380
    if (r == NULL && howmuch != 0)
	die(_("nano is out of memory!"));
Chris Allegretta's avatar
Chris Allegretta committed
381
382
383

    return r;
}
Robert Siemborski's avatar
Robert Siemborski committed
384

385
386
387
388
/* Copy the first n characters of one malloc()ed string to another
 * pointer.  Should be used as: "dest = mallocstrncpy(dest, src,
 * n);". */
char *mallocstrncpy(char *dest, const char *src, size_t n)
389
{
390
391
    if (src == NULL)
	src = "";
392

393
    if (src != dest)
394
395
	free(dest);

396
    dest = charalloc(n);
397
    strncpy(dest, src, n);
398
399
400
401

    return dest;
}

402
403
404
405
/* Copy one malloc()ed string to another pointer.  Should be used as:
 * "dest = mallocstrcpy(dest, src);". */
char *mallocstrcpy(char *dest, const char *src)
{
406
407
    return mallocstrncpy(dest, src, (src == NULL) ? 1 :
	strlen(src) + 1);
408
409
}

410
411
412
413
414
415
416
417
418
/* Free the malloc()ed string at dest and return the malloc()ed string
 * at src.  Should be used as: "answer = mallocstrassn(answer,
 * real_dir_from_tilde(answer));". */
char *mallocstrassn(char *dest, char *src)
{
    free(dest);
    return src;
}

419
420
421
422
423
424
425
426
/* nano scrolls horizontally within a line in chunks.  Return the column
 * number of the first character displayed in the edit window when the
 * cursor is at the given column.  Note that (0 <= column -
 * get_page_start(column) < COLS). */
size_t get_page_start(size_t column)
{
    if (column == 0 || column < COLS - 1)
	return 0;
427
    else if (COLS > 8)
428
429
430
431
432
	return column - 7 - (column - 7) % (COLS - 8);
    else
	return column - (COLS - 2);
}

433
/* Return the placewewant associated with current_x, i.e. the zero-based
434
435
436
437
438
439
440
 * column position of the cursor.  The value will be no smaller than
 * current_x. */
size_t xplustabs(void)
{
    return strnlenpt(openfile->current->data, openfile->current_x);
}

441
/* Return the index in s of the character displayed at the given column,
442
 * i.e. the largest value such that strnlenpt(s, actual_x(s, column)) <=
443
 * column. */
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
size_t actual_x(const char *s, size_t column)
{
    size_t i = 0;
	/* The position in s, returned. */
    size_t len = 0;
	/* The screen display width to s[i]. */

    assert(s != NULL);

    while (*s != '\0') {
	int s_len = parse_mbchar(s, NULL, &len);

	if (len > column)
	    break;

	i += s_len;
	s += s_len;
    }

    return i;
}

/* A strnlen() with tabs and multicolumn characters factored in, similar
 * to xplustabs().  How many columns wide are the first maxlen characters
 * of s? */
size_t strnlenpt(const char *s, size_t maxlen)
{
    size_t len = 0;
	/* The screen display width to s[i]. */

    if (maxlen == 0)
	return 0;

    assert(s != NULL);

    while (*s != '\0') {
	int s_len = parse_mbchar(s, NULL, &len);

	s += s_len;

	if (maxlen <= s_len)
	    break;

	maxlen -= s_len;
    }

    return len;
}

/* A strlen() with tabs and multicolumn characters factored in, similar
 * to xplustabs().  How many columns wide is s? */
size_t strlenpt(const char *s)
{
    return strnlenpt(s, (size_t)-1);
}

500
/* Append a new magicline to filebot. */
501
502
void new_magicline(void)
{
503
504
505
506
507
508
509
    openfile->filebot->next = (filestruct *)nmalloc(sizeof(filestruct));
    openfile->filebot->next->data = mallocstrcpy(NULL, "");
    openfile->filebot->next->prev = openfile->filebot;
    openfile->filebot->next->next = NULL;
    openfile->filebot->next->lineno = openfile->filebot->lineno + 1;
    openfile->filebot = openfile->filebot->next;
    openfile->totsize++;
Robert Siemborski's avatar
Robert Siemborski committed
510
}
Chris Allegretta's avatar
Chris Allegretta committed
511

512
#ifndef NANO_TINY
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
513
/* Remove the magicline from filebot, if there is one and it isn't the
514
515
 * only line in the file.  Assume that edittop and current are not at
 * filebot. */
516
517
void remove_magicline(void)
{
518
    if (openfile->filebot->data[0] == '\0' &&
519
	openfile->filebot != openfile->fileage) {
520
521
	assert(openfile->filebot != openfile->edittop && openfile->filebot != openfile->current);

522
523
524
525
	openfile->filebot = openfile->filebot->prev;
	free_filestruct(openfile->filebot->next);
	openfile->filebot->next = NULL;
	openfile->totsize--;
526
527
528
    }
}

529
530
/* Set top_x and bot_x to the top and bottom x-coordinates of the mark,
 * respectively, based on the locations of top and bot.  If
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
531
 * right_side_up isn't NULL, set it to TRUE if the mark begins with
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
532
 * (mark_begin, mark_begin_x) and ends with (current, current_x), or
533
534
535
536
537
538
 * FALSE otherwise. */
void mark_order(const filestruct **top, size_t *top_x, const filestruct
	**bot, size_t *bot_x, bool *right_side_up)
{
    assert(top != NULL && top_x != NULL && bot != NULL && bot_x != NULL);

David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
539
540
541
542
543
    if ((openfile->current->lineno == openfile->mark_begin->lineno &&
	openfile->current_x > openfile->mark_begin_x) ||
	openfile->current->lineno > openfile->mark_begin->lineno) {
	*top = openfile->mark_begin;
	*top_x = openfile->mark_begin_x;
544
545
	*bot = openfile->current;
	*bot_x = openfile->current_x;
546
547
548
	if (right_side_up != NULL)
	    *right_side_up = TRUE;
    } else {
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
549
550
	*bot = openfile->mark_begin;
	*bot_x = openfile->mark_begin_x;
551
552
	*top = openfile->current;
	*top_x = openfile->current_x;
553
554
555
556
557
558
	if (right_side_up != NULL)
	    *right_side_up = FALSE;
    }
}
#endif

559
560
561
/* Calculate the number of characters between begin and end, and return
 * it. */
size_t get_totsize(const filestruct *begin, const filestruct *end)
562
{
563
    size_t totsize = 0;
564
565
566
    const filestruct *f;

    /* Go through the lines from begin to end->prev, if we can. */
567
    for (f = begin; f != end && f != NULL; f = f->next) {
568
	/* Count the number of characters on this line. */
569
	totsize += mbstrlen(f->data);
570

571
572
573
	/* Count the newline if we have one. */
	if (f->next != NULL)
	    totsize++;
574
575
576
577
578
    }

    /* Go through the line at end, if we can. */
    if (f != NULL) {
	/* Count the number of characters on this line. */
579
	totsize += mbstrlen(f->data);
580

581
582
583
	/* Count the newline if we have one. */
	if (f->next != NULL)
	    totsize++;
584
    }
585
586

    return totsize;
587
}
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605

#ifdef DEBUG
/* Dump the filestruct inptr to stderr. */
void dump_filestruct(const filestruct *inptr)
{
    if (inptr == openfile->fileage)
	fprintf(stderr, "Dumping file buffer to stderr...\n");
    else if (inptr == cutbuffer)
	fprintf(stderr, "Dumping cutbuffer to stderr...\n");
    else
	fprintf(stderr, "Dumping a buffer to stderr...\n");

    while (inptr != NULL) {
	fprintf(stderr, "(%ld) %s\n", (long)inptr->lineno, inptr->data);
	inptr = inptr->next;
    }
}

606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
/* Get back a pointer given a line number in the current openfilestruct */
filestruct *fsfromline(ssize_t lineno)
{
    filestruct *f = openfile->current;

    if (lineno <= openfile->current->lineno)
	for (; f->lineno != lineno && f != openfile->fileage; f = f->prev)
	   ;
    else
        for (; f->lineno != lineno && f->next != NULL; f = f->next)

    if (f->lineno != lineno)
	return NULL;

    return f;
}


624
625
626
627
628
629
630
631
632
633
634
635
/* Dump the current buffer's filestruct to stderr in reverse. */
void dump_filestruct_reverse(void)
{
    const filestruct *fileptr = openfile->filebot;

    while (fileptr != NULL) {
	fprintf(stderr, "(%ld) %s\n", (long)fileptr->lineno,
		fileptr->data);
	fileptr = fileptr->prev;
    }
}
#endif /* DEBUG */