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

23
24
25
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
26

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

35
int digits(size_t n)
36
37
38
39
40
41
42
43
44
45
46
{
    int i = 1;

    while (n > 10) {
	n /= 10;
	i++;
    }

    return i;
}

47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/* Return the user's home directory.  We use $HOME, and if that fails,
 * we fall back on getpwuid(). */
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
64
65
66
/* 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. */
67
bool parse_num(const char *str, ssize_t *val)
68
69
70
71
72
{
    char *first_error;
    ssize_t j;

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

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

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

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

82
    return TRUE;
83
84
}

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

    assert(str != NULL);

    comma = strchr(str, ',');

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

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

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

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

115
    return retval;
116
117
}

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

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

Chris Allegretta's avatar
Chris Allegretta committed
127
128
/* 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
129
{
Chris Allegretta's avatar
Chris Allegretta committed
130
    assert(data != NULL);
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
131

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

Chris Allegretta's avatar
Chris Allegretta committed
136
137
138
/* 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
139
{
Chris Allegretta's avatar
Chris Allegretta committed
140
    assert(str != NULL);
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
141

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

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

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

160
161
/* These functions (ngetline() and ngetdelim(), originally getline() and
 * getdelim()) were adapted from GNU mailutils 0.5 (mailbox/getline.c).
162
163
 * Here is the notice from that file, after converting to the GPL via
 * LGPL clause 3:
164
165
166
167
168
 *
 * GNU Mailutils -- a suite of utilities for electronic mail
 * Copyright (C) 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
 *
 * This library is free software; you can redistribute it and/or
169
170
171
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation; either version 2 of the
 * License, or (at your option) any later version.
172
173
174
175
 *
 * 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
176
 * General Public License for more details.
177
 *
178
179
 * You should have received a copy of the GNU General Public License
 * along with this library; if not, write to the Free Software
180
181
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307  USA  */

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

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

    /* Sanity checks. */
    if (lineptr == NULL || n == NULL || stream == NULL)
	return -1;

    /* Allocate the line the first time. */
    if (*lineptr == NULL) {
204
205
	*lineptr = charalloc(MAX_BUF_SIZE);
	*n = MAX_BUF_SIZE;
206
207
208
209
210
    }

    while ((c = getc(stream)) != EOF) {
	/* Check if more memory is needed. */
	if (indx >= *n) {
211
212
	    *lineptr = charealloc(*lineptr, *n + MAX_BUF_SIZE);
	    *n += MAX_BUF_SIZE;
213
214
215
216
217
218
219
220
221
222
223
224
	}

	/* Push the result in the line. */
	(*lineptr)[indx++] = (char)c;

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

    /* Make room for the null character. */
    if (indx >= *n) {
225
226
	*lineptr = charealloc(*lineptr, *n + MAX_BUF_SIZE);
	*n += MAX_BUF_SIZE;
227
228
229
    }

    /* Null terminate the buffer. */
230
    null_at(lineptr, indx++);
231
    *n = indx;
232
233
234
235
236
237

    /* 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. */
    return (c == EOF && (indx - 1) == 0) ? -1 : indx - 1;
}
#endif
238
#endif /* !NANO_TINY && ENABLE_NANORC */
239

240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
#ifdef HAVE_REGEX_H
#ifdef BROKEN_REGEXEC
/* Work around a potential segfault in glibc 2.2.3's regexec(). */
int safe_regexec(const regex_t *preg, const char *string, size_t nmatch,
	regmatch_t pmatch[], int eflags)
{
    if (string != NULL && *string != '\0')
	return regexec(preg, string, nmatch, pmatch, eflags);

    return REG_NOMATCH;
}
#endif

int regexp_bol_or_eol(const regex_t *preg, const char *string)
{
    return (regexec(preg, string, 0, NULL, 0) == 0 &&
	regexec(preg, string, 0, NULL, REG_NOTBOL | REG_NOTEOL) ==
	REG_NOMATCH);
}
#endif /* HAVE_REGEX_H */

/* 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);

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

    /* 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;
}

286
287
288
289
290
291
/* 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
292
const char *strstrwrapper(const char *haystack, const char *needle,
293
	const char *start)
Chris Allegretta's avatar
Chris Allegretta committed
294
{
295
    /* start can be 1 character before the start or after the end of the
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
296
     * line.  In either case, we just say no match was found. */
297
298
    if ((start > haystack && *(start - 1) == '\0') || start < haystack)
	return NULL;
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
299

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

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

David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
310
		/* Search forward until there are no more matches. */
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
311
312
313
314
		while (regexec(&search_regexp, retval + 1, 1,
			regmatches, REG_NOTBOL) == 0 &&
			retval + regmatches[0].rm_so + 1 <= start)
		    retval += regmatches[0].rm_so + 1;
315
316
317
318
319
		/* 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
320
	    }
321
	} else
322
#endif /* !NANO_TINY */
323
	if (regexec(&search_regexp, start, 10, regmatches,
324
		(start > haystack) ? REG_NOTBOL : 0) == 0) {
325
	    const char *retval = start + regmatches[0].rm_so;
326
327
328

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

David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
350
/* This is a wrapper for the perror() function.  The wrapper takes care
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
351
352
353
 * of curses, calls perror() (which writes to stderr), and then
 * refreshes the screen.  Note that nperror() causes the window to
 * flicker once. */
354
355
void nperror(const char *s)
{
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
356
    /* Leave curses mode and go to the terminal. */
357
    if (endwin() != ERR) {
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
358
359
	perror(s);		/* Print the error. */
	total_refresh();	/* Return to curses and refresh. */
360
361
362
    }
}

David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
363
/* Thanks, BG, many people have been asking for this... */
Chris Allegretta's avatar
Chris Allegretta committed
364
void *nmalloc(size_t howmuch)
Chris Allegretta's avatar
Chris Allegretta committed
365
{
Chris Allegretta's avatar
Chris Allegretta committed
366
    void *r = malloc(howmuch);
Chris Allegretta's avatar
Chris Allegretta committed
367

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

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

Chris Allegretta's avatar
Chris Allegretta committed
374
void *nrealloc(void *ptr, size_t howmuch)
Chris Allegretta's avatar
Chris Allegretta committed
375
{
Chris Allegretta's avatar
Chris Allegretta committed
376
    void *r = realloc(ptr, howmuch);
Chris Allegretta's avatar
Chris Allegretta committed
377

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

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

384
385
386
387
/* 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)
388
{
389
390
    if (src == NULL)
	src = "";
391

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

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

    return dest;
}

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

409
410
411
412
413
414
415
416
417
/* 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;
}

418
419
420
421
422
423
424
425
/* 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;
426
    else if (COLS > 8)
427
428
429
430
431
	return column - 7 - (column - 7) % (COLS - 8);
    else
	return column - (COLS - 2);
}

432
433
434
435
436
437
438
439
/* Return the placewewant associated with current_x, i.e, the zero-based
 * 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);
}

440
441
442
/* Return the index in s of the character displayed at the given column,
 * i.e, the largest value such that strnlenpt(s, actual_x(s, column)) <=
 * column. */
443
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
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);
}

499
/* Append a new magicline to filebot. */
500
501
void new_magicline(void)
{
502
503
504
505
506
507
508
    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
509
}
Chris Allegretta's avatar
Chris Allegretta committed
510

511
#ifndef NANO_TINY
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
512
513
/* Remove the magicline from filebot, if there is one and it isn't the
 * only line in the file. */
514
515
void remove_magicline(void)
{
516
    if (openfile->filebot->data[0] == '\0' &&
517
	openfile->filebot != openfile->fileage) {
518
519
520
521
	openfile->filebot = openfile->filebot->prev;
	free_filestruct(openfile->filebot->next);
	openfile->filebot->next = NULL;
	openfile->totsize--;
522
523
524
    }
}

525
526
527
/* 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
 * right_side_up isn't NULL, set it to TRUE If the mark begins with
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
528
 * (mark_begin, mark_begin_x) and ends with (current, current_x), or
529
530
531
532
533
534
 * 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
535
536
537
538
539
    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;
540
541
	*bot = openfile->current;
	*bot_x = openfile->current_x;
542
543
544
	if (right_side_up != NULL)
	    *right_side_up = TRUE;
    } else {
David Lawrence Ramsey's avatar
David Lawrence Ramsey committed
545
546
	*bot = openfile->mark_begin;
	*bot_x = openfile->mark_begin_x;
547
548
	*top = openfile->current;
	*top_x = openfile->current_x;
549
550
551
552
553
554
	if (right_side_up != NULL)
	    *right_side_up = FALSE;
    }
}
#endif

555
556
557
/* Calculate the number of characters between begin and end, and return
 * it. */
size_t get_totsize(const filestruct *begin, const filestruct *end)
558
{
559
    size_t totsize = 0;
560
561
562
    const filestruct *f;

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

567
568
569
	/* Count the newline if we have one. */
	if (f->next != NULL)
	    totsize++;
570
571
572
573
574
    }

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

577
578
579
	/* Count the newline if we have one. */
	if (f->next != NULL)
	    totsize++;
580
    }
581
582

    return totsize;
583
}
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629

#ifndef NDEBUG
/* Return what the current line number should be, starting at edittop
 * and ending at fileptr. */
int check_linenumbers(const filestruct *fileptr)
{
    int check_line = 0;
    const filestruct *filetmp;

    for (filetmp = openfile->edittop; filetmp != fileptr;
	filetmp = filetmp->next)
	check_line++;

    return check_line;
}
#endif /* !NDEBUG */

#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;
    }
}

/* 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 */