1 #include "git-compat-util.h"
5 #include "string-list.h"
9 int starts_with(const char *str
, const char *prefix
)
11 for (; ; str
++, prefix
++)
14 else if (*str
!= *prefix
)
18 int istarts_with(const char *str
, const char *prefix
)
20 for (; ; str
++, prefix
++)
23 else if (tolower(*str
) != tolower(*prefix
))
27 int skip_to_optional_arg_default(const char *str
, const char *prefix
,
28 const char **arg
, const char *def
)
32 if (!skip_prefix(str
, prefix
, &p
))
50 * Used as the default ->buf value, so that people can always assume
51 * buf is non NULL and ->buf is NUL terminated even for a freshly
54 char strbuf_slopbuf
[1];
56 void strbuf_init(struct strbuf
*sb
, size_t hint
)
58 struct strbuf blank
= STRBUF_INIT
;
59 memcpy(sb
, &blank
, sizeof(*sb
));
61 strbuf_grow(sb
, hint
);
64 void strbuf_release(struct strbuf
*sb
)
72 char *strbuf_detach(struct strbuf
*sb
, size_t *sz
)
83 void strbuf_attach(struct strbuf
*sb
, void *buf
, size_t len
, size_t alloc
)
90 sb
->buf
[sb
->len
] = '\0';
93 void strbuf_grow(struct strbuf
*sb
, size_t extra
)
95 int new_buf
= !sb
->alloc
;
96 if (unsigned_add_overflows(extra
, 1) ||
97 unsigned_add_overflows(sb
->len
, extra
+ 1))
98 die("you want to use way too much memory");
101 ALLOC_GROW(sb
->buf
, sb
->len
+ extra
+ 1, sb
->alloc
);
106 void strbuf_trim(struct strbuf
*sb
)
112 void strbuf_rtrim(struct strbuf
*sb
)
114 while (sb
->len
> 0 && isspace((unsigned char)sb
->buf
[sb
->len
- 1]))
116 sb
->buf
[sb
->len
] = '\0';
119 void strbuf_trim_trailing_dir_sep(struct strbuf
*sb
)
121 while (sb
->len
> 0 && is_dir_sep((unsigned char)sb
->buf
[sb
->len
- 1]))
123 sb
->buf
[sb
->len
] = '\0';
126 void strbuf_trim_trailing_newline(struct strbuf
*sb
)
128 if (sb
->len
> 0 && sb
->buf
[sb
->len
- 1] == '\n') {
129 if (--sb
->len
> 0 && sb
->buf
[sb
->len
- 1] == '\r')
131 sb
->buf
[sb
->len
] = '\0';
135 void strbuf_ltrim(struct strbuf
*sb
)
138 while (sb
->len
> 0 && isspace(*b
)) {
142 memmove(sb
->buf
, b
, sb
->len
);
143 sb
->buf
[sb
->len
] = '\0';
146 int strbuf_reencode(struct strbuf
*sb
, const char *from
, const char *to
)
151 if (same_encoding(from
, to
))
154 out
= reencode_string_len(sb
->buf
, sb
->len
, to
, from
, &len
);
158 strbuf_attach(sb
, out
, len
, len
);
162 void strbuf_tolower(struct strbuf
*sb
)
164 char *p
= sb
->buf
, *end
= sb
->buf
+ sb
->len
;
169 struct strbuf
**strbuf_split_buf(const char *str
, size_t slen
,
170 int terminator
, int max
)
172 struct strbuf
**ret
= NULL
;
173 size_t nr
= 0, alloc
= 0;
178 if (max
<= 0 || nr
+ 1 < max
) {
179 const char *end
= memchr(str
, terminator
, slen
);
183 t
= xmalloc(sizeof(struct strbuf
));
185 strbuf_add(t
, str
, len
);
186 ALLOC_GROW(ret
, nr
+ 2, alloc
);
191 ALLOC_GROW(ret
, nr
+ 1, alloc
); /* In case string was empty */
196 void strbuf_add_separated_string_list(struct strbuf
*str
,
198 struct string_list
*slist
)
200 struct string_list_item
*item
;
203 for_each_string_list_item(item
, slist
) {
205 strbuf_addstr(str
, sep
);
206 strbuf_addstr(str
, item
->string
);
211 void strbuf_list_free(struct strbuf
**sbs
)
213 struct strbuf
**s
= sbs
;
224 int strbuf_cmp(const struct strbuf
*a
, const struct strbuf
*b
)
226 size_t len
= a
->len
< b
->len
? a
->len
: b
->len
;
227 int cmp
= memcmp(a
->buf
, b
->buf
, len
);
230 return a
->len
< b
->len
? -1: a
->len
!= b
->len
;
233 void strbuf_splice(struct strbuf
*sb
, size_t pos
, size_t len
,
234 const void *data
, size_t dlen
)
236 if (unsigned_add_overflows(pos
, len
))
237 die("you want to use way too much memory");
239 die("`pos' is too far after the end of the buffer");
240 if (pos
+ len
> sb
->len
)
241 die("`pos + len' is too far after the end of the buffer");
244 strbuf_grow(sb
, dlen
- len
);
245 memmove(sb
->buf
+ pos
+ dlen
,
247 sb
->len
- pos
- len
);
248 memcpy(sb
->buf
+ pos
, data
, dlen
);
249 strbuf_setlen(sb
, sb
->len
+ dlen
- len
);
252 void strbuf_insert(struct strbuf
*sb
, size_t pos
, const void *data
, size_t len
)
254 strbuf_splice(sb
, pos
, 0, data
, len
);
257 void strbuf_vinsertf(struct strbuf
*sb
, size_t pos
, const char *fmt
, va_list ap
)
264 die("`pos' is too far after the end of the buffer");
266 len
= vsnprintf(sb
->buf
+ sb
->len
, 0, fmt
, cp
);
269 BUG("your vsnprintf is broken (returned %d)", len
);
271 return; /* nothing to do */
272 if (unsigned_add_overflows(sb
->len
, len
))
273 die("you want to use way too much memory");
274 strbuf_grow(sb
, len
);
275 memmove(sb
->buf
+ pos
+ len
, sb
->buf
+ pos
, sb
->len
- pos
);
276 /* vsnprintf() will append a NUL, overwriting one of our characters */
277 save
= sb
->buf
[pos
+ len
];
278 len2
= vsnprintf(sb
->buf
+ pos
, len
+ 1, fmt
, ap
);
279 sb
->buf
[pos
+ len
] = save
;
281 BUG("your vsnprintf is broken (returns inconsistent lengths)");
282 strbuf_setlen(sb
, sb
->len
+ len
);
285 void strbuf_insertf(struct strbuf
*sb
, size_t pos
, const char *fmt
, ...)
289 strbuf_vinsertf(sb
, pos
, fmt
, ap
);
293 void strbuf_remove(struct strbuf
*sb
, size_t pos
, size_t len
)
295 strbuf_splice(sb
, pos
, len
, "", 0);
298 void strbuf_add(struct strbuf
*sb
, const void *data
, size_t len
)
300 strbuf_grow(sb
, len
);
301 memcpy(sb
->buf
+ sb
->len
, data
, len
);
302 strbuf_setlen(sb
, sb
->len
+ len
);
305 void strbuf_addbuf(struct strbuf
*sb
, const struct strbuf
*sb2
)
307 strbuf_grow(sb
, sb2
->len
);
308 memcpy(sb
->buf
+ sb
->len
, sb2
->buf
, sb2
->len
);
309 strbuf_setlen(sb
, sb
->len
+ sb2
->len
);
312 const char *strbuf_join_argv(struct strbuf
*buf
,
313 int argc
, const char **argv
, char delim
)
318 strbuf_addstr(buf
, *argv
);
320 strbuf_addch(buf
, delim
);
321 strbuf_addstr(buf
, *(++argv
));
327 void strbuf_addchars(struct strbuf
*sb
, int c
, size_t n
)
330 memset(sb
->buf
+ sb
->len
, c
, n
);
331 strbuf_setlen(sb
, sb
->len
+ n
);
334 void strbuf_addf(struct strbuf
*sb
, const char *fmt
, ...)
338 strbuf_vaddf(sb
, fmt
, ap
);
342 static void add_lines(struct strbuf
*out
,
345 const char *buf
, size_t size
)
349 const char *next
= memchr(buf
, '\n', size
);
350 next
= next
? (next
+ 1) : (buf
+ size
);
352 prefix
= ((prefix2
&& (buf
[0] == '\n' || buf
[0] == '\t'))
353 ? prefix2
: prefix1
);
354 strbuf_addstr(out
, prefix
);
355 strbuf_add(out
, buf
, next
- buf
);
359 strbuf_complete_line(out
);
362 void strbuf_add_commented_lines(struct strbuf
*out
, const char *buf
,
363 size_t size
, char comment_line_char
)
365 static char prefix1
[3];
366 static char prefix2
[2];
368 if (prefix1
[0] != comment_line_char
) {
369 xsnprintf(prefix1
, sizeof(prefix1
), "%c ", comment_line_char
);
370 xsnprintf(prefix2
, sizeof(prefix2
), "%c", comment_line_char
);
372 add_lines(out
, prefix1
, prefix2
, buf
, size
);
375 void strbuf_commented_addf(struct strbuf
*sb
, char comment_line_char
,
376 const char *fmt
, ...)
379 struct strbuf buf
= STRBUF_INIT
;
380 int incomplete_line
= sb
->len
&& sb
->buf
[sb
->len
- 1] != '\n';
382 va_start(params
, fmt
);
383 strbuf_vaddf(&buf
, fmt
, params
);
386 strbuf_add_commented_lines(sb
, buf
.buf
, buf
.len
, comment_line_char
);
388 sb
->buf
[--sb
->len
] = '\0';
390 strbuf_release(&buf
);
393 void strbuf_vaddf(struct strbuf
*sb
, const char *fmt
, va_list ap
)
398 if (!strbuf_avail(sb
))
401 len
= vsnprintf(sb
->buf
+ sb
->len
, sb
->alloc
- sb
->len
, fmt
, cp
);
404 BUG("your vsnprintf is broken (returned %d)", len
);
405 if (len
> strbuf_avail(sb
)) {
406 strbuf_grow(sb
, len
);
407 len
= vsnprintf(sb
->buf
+ sb
->len
, sb
->alloc
- sb
->len
, fmt
, ap
);
408 if (len
> strbuf_avail(sb
))
409 BUG("your vsnprintf is broken (insatiable)");
411 strbuf_setlen(sb
, sb
->len
+ len
);
414 int strbuf_expand_step(struct strbuf
*sb
, const char **formatp
)
416 const char *format
= *formatp
;
417 const char *percent
= strchrnul(format
, '%');
419 strbuf_add(sb
, format
, percent
- format
);
422 *formatp
= percent
+ 1;
426 size_t strbuf_expand_literal(struct strbuf
*sb
, const char *placeholder
)
430 switch (placeholder
[0]) {
431 case 'n': /* newline */
432 strbuf_addch(sb
, '\n');
435 /* %x00 == NUL, %x0a == LF, etc. */
436 ch
= hex2chr(placeholder
+ 1);
439 strbuf_addch(sb
, ch
);
445 void strbuf_addbuf_percentquote(struct strbuf
*dst
, const struct strbuf
*src
)
447 size_t i
, len
= src
->len
;
449 for (i
= 0; i
< len
; i
++) {
450 if (src
->buf
[i
] == '%')
451 strbuf_addch(dst
, '%');
452 strbuf_addch(dst
, src
->buf
[i
]);
456 #define URL_UNSAFE_CHARS " <>\"%{}|\\^`:?#[]@!$&'()*+,;="
458 void strbuf_add_percentencode(struct strbuf
*dst
, const char *src
, int flags
)
460 size_t i
, len
= strlen(src
);
462 for (i
= 0; i
< len
; i
++) {
463 unsigned char ch
= src
[i
];
464 if (ch
<= 0x1F || ch
>= 0x7F ||
465 (ch
== '/' && (flags
& STRBUF_ENCODE_SLASH
)) ||
466 strchr(URL_UNSAFE_CHARS
, ch
))
467 strbuf_addf(dst
, "%%%02X", (unsigned char)ch
);
469 strbuf_addch(dst
, ch
);
473 size_t strbuf_fread(struct strbuf
*sb
, size_t size
, FILE *f
)
476 size_t oldalloc
= sb
->alloc
;
478 strbuf_grow(sb
, size
);
479 res
= fread(sb
->buf
+ sb
->len
, 1, size
, f
);
481 strbuf_setlen(sb
, sb
->len
+ res
);
482 else if (oldalloc
== 0)
487 ssize_t
strbuf_read(struct strbuf
*sb
, int fd
, size_t hint
)
489 size_t oldlen
= sb
->len
;
490 size_t oldalloc
= sb
->alloc
;
492 strbuf_grow(sb
, hint
? hint
: 8192);
494 ssize_t want
= sb
->alloc
- sb
->len
- 1;
495 ssize_t got
= read_in_full(fd
, sb
->buf
+ sb
->len
, want
);
501 strbuf_setlen(sb
, oldlen
);
507 strbuf_grow(sb
, 8192);
510 sb
->buf
[sb
->len
] = '\0';
511 return sb
->len
- oldlen
;
514 ssize_t
strbuf_read_once(struct strbuf
*sb
, int fd
, size_t hint
)
516 size_t oldalloc
= sb
->alloc
;
519 strbuf_grow(sb
, hint
? hint
: 8192);
520 cnt
= xread(fd
, sb
->buf
+ sb
->len
, sb
->alloc
- sb
->len
- 1);
522 strbuf_setlen(sb
, sb
->len
+ cnt
);
523 else if (oldalloc
== 0)
528 ssize_t
strbuf_write(struct strbuf
*sb
, FILE *f
)
530 return sb
->len
? fwrite(sb
->buf
, 1, sb
->len
, f
) : 0;
533 #define STRBUF_MAXLINK (2*PATH_MAX)
535 int strbuf_readlink(struct strbuf
*sb
, const char *path
, size_t hint
)
537 size_t oldalloc
= sb
->alloc
;
542 while (hint
< STRBUF_MAXLINK
) {
545 strbuf_grow(sb
, hint
);
546 len
= readlink(path
, sb
->buf
, hint
);
550 } else if (len
< hint
) {
551 strbuf_setlen(sb
, len
);
555 /* .. the buffer was too small - try again */
563 int strbuf_getcwd(struct strbuf
*sb
)
565 size_t oldalloc
= sb
->alloc
;
566 size_t guessed_len
= 128;
568 for (;; guessed_len
*= 2) {
569 strbuf_grow(sb
, guessed_len
);
570 if (getcwd(sb
->buf
, sb
->alloc
)) {
571 strbuf_setlen(sb
, strlen(sb
->buf
));
576 * If getcwd(3) is implemented as a syscall that falls
577 * back to a regular lookup using readdir(3) etc. then
578 * we may be able to avoid EACCES by providing enough
579 * space to the syscall as it's not necessarily bound
580 * to the same restrictions as the fallback.
582 if (errno
== EACCES
&& guessed_len
< PATH_MAX
)
596 int strbuf_getwholeline(struct strbuf
*sb
, FILE *fp
, int term
)
605 /* Translate slopbuf to NULL, as we cannot call realloc on it */
609 r
= getdelim(&sb
->buf
, &sb
->alloc
, term
, fp
);
618 * Normally we would have called xrealloc, which will try to free
619 * memory and recover. But we have no way to tell getdelim() to do so.
620 * Worse, we cannot try to recover ENOMEM ourselves, because we have
621 * no idea how many bytes were read by getdelim.
623 * Dying here is reasonable. It mirrors what xrealloc would do on
624 * catastrophic memory failure. We skip the opportunity to free pack
625 * memory and retry, but that's unlikely to help for a malloc small
626 * enough to hold a single line of input, anyway.
629 die("Out of memory, getdelim failed");
632 * Restore strbuf invariants; if getdelim left us with a NULL pointer,
633 * we can just re-init, but otherwise we should make sure that our
634 * length is empty, and that the result is NUL-terminated.
643 int strbuf_getwholeline(struct strbuf
*sb
, FILE *fp
, int term
)
652 while ((ch
= getc_unlocked(fp
)) != EOF
) {
653 if (!strbuf_avail(sb
))
655 sb
->buf
[sb
->len
++] = ch
;
660 if (ch
== EOF
&& sb
->len
== 0)
663 sb
->buf
[sb
->len
] = '\0';
668 int strbuf_appendwholeline(struct strbuf
*sb
, FILE *fp
, int term
)
670 struct strbuf line
= STRBUF_INIT
;
671 if (strbuf_getwholeline(&line
, fp
, term
))
673 strbuf_addbuf(sb
, &line
);
674 strbuf_release(&line
);
678 static int strbuf_getdelim(struct strbuf
*sb
, FILE *fp
, int term
)
680 if (strbuf_getwholeline(sb
, fp
, term
))
682 if (sb
->buf
[sb
->len
- 1] == term
)
683 strbuf_setlen(sb
, sb
->len
- 1);
687 int strbuf_getdelim_strip_crlf(struct strbuf
*sb
, FILE *fp
, int term
)
689 if (strbuf_getwholeline(sb
, fp
, term
))
691 if (term
== '\n' && sb
->buf
[sb
->len
- 1] == '\n') {
692 strbuf_setlen(sb
, sb
->len
- 1);
693 if (sb
->len
&& sb
->buf
[sb
->len
- 1] == '\r')
694 strbuf_setlen(sb
, sb
->len
- 1);
699 int strbuf_getline(struct strbuf
*sb
, FILE *fp
)
701 return strbuf_getdelim_strip_crlf(sb
, fp
, '\n');
704 int strbuf_getline_lf(struct strbuf
*sb
, FILE *fp
)
706 return strbuf_getdelim(sb
, fp
, '\n');
709 int strbuf_getline_nul(struct strbuf
*sb
, FILE *fp
)
711 return strbuf_getdelim(sb
, fp
, '\0');
714 int strbuf_getwholeline_fd(struct strbuf
*sb
, int fd
, int term
)
720 ssize_t len
= xread(fd
, &ch
, 1);
723 strbuf_addch(sb
, ch
);
730 ssize_t
strbuf_read_file(struct strbuf
*sb
, const char *path
, size_t hint
)
736 fd
= open(path
, O_RDONLY
);
739 len
= strbuf_read(sb
, fd
, hint
);
750 void strbuf_add_lines(struct strbuf
*out
, const char *prefix
,
751 const char *buf
, size_t size
)
753 add_lines(out
, prefix
, NULL
, buf
, size
);
756 void strbuf_addstr_xml_quoted(struct strbuf
*buf
, const char *s
)
759 size_t len
= strcspn(s
, "\"<>&");
760 strbuf_add(buf
, s
, len
);
764 strbuf_addstr(buf
, """);
767 strbuf_addstr(buf
, "<");
770 strbuf_addstr(buf
, ">");
773 strbuf_addstr(buf
, "&");
782 static void strbuf_add_urlencode(struct strbuf
*sb
, const char *s
, size_t len
,
783 char_predicate allow_unencoded_fn
)
785 strbuf_grow(sb
, len
);
788 if (allow_unencoded_fn(ch
))
789 strbuf_addch(sb
, ch
);
791 strbuf_addf(sb
, "%%%02x", (unsigned char)ch
);
795 void strbuf_addstr_urlencode(struct strbuf
*sb
, const char *s
,
796 char_predicate allow_unencoded_fn
)
798 strbuf_add_urlencode(sb
, s
, strlen(s
), allow_unencoded_fn
);
801 static void strbuf_humanise(struct strbuf
*buf
, off_t bytes
,
804 if (bytes
> 1 << 30) {
807 /* TRANSLATORS: IEC 80000-13:2008 gibibyte */
809 /* TRANSLATORS: IEC 80000-13:2008 gibibyte/second */
811 (unsigned)(bytes
>> 30),
812 (unsigned)(bytes
& ((1 << 30) - 1)) / 10737419);
813 } else if (bytes
> 1 << 20) {
814 unsigned x
= bytes
+ 5243; /* for rounding */
817 /* TRANSLATORS: IEC 80000-13:2008 mebibyte */
819 /* TRANSLATORS: IEC 80000-13:2008 mebibyte/second */
821 x
>> 20, ((x
& ((1 << 20) - 1)) * 100) >> 20);
822 } else if (bytes
> 1 << 10) {
823 unsigned x
= bytes
+ 5; /* for rounding */
826 /* TRANSLATORS: IEC 80000-13:2008 kibibyte */
828 /* TRANSLATORS: IEC 80000-13:2008 kibibyte/second */
830 x
>> 10, ((x
& ((1 << 10) - 1)) * 100) >> 10);
834 /* TRANSLATORS: IEC 80000-13:2008 byte */
835 Q_("%u byte", "%u bytes", bytes
) :
836 /* TRANSLATORS: IEC 80000-13:2008 byte/second */
837 Q_("%u byte/s", "%u bytes/s", bytes
),
842 void strbuf_humanise_bytes(struct strbuf
*buf
, off_t bytes
)
844 strbuf_humanise(buf
, bytes
, 0);
847 void strbuf_humanise_rate(struct strbuf
*buf
, off_t bytes
)
849 strbuf_humanise(buf
, bytes
, 1);
852 int printf_ln(const char *fmt
, ...)
857 ret
= vprintf(fmt
, ap
);
859 if (ret
< 0 || putchar('\n') == EOF
)
864 int fprintf_ln(FILE *fp
, const char *fmt
, ...)
869 ret
= vfprintf(fp
, fmt
, ap
);
871 if (ret
< 0 || putc('\n', fp
) == EOF
)
876 char *xstrdup_tolower(const char *string
)
881 len
= strlen(string
);
882 result
= xmallocz(len
);
883 for (i
= 0; i
< len
; i
++)
884 result
[i
] = tolower(string
[i
]);
888 char *xstrdup_toupper(const char *string
)
893 len
= strlen(string
);
894 result
= xmallocz(len
);
895 for (i
= 0; i
< len
; i
++)
896 result
[i
] = toupper(string
[i
]);
900 char *xstrvfmt(const char *fmt
, va_list ap
)
902 struct strbuf buf
= STRBUF_INIT
;
903 strbuf_vaddf(&buf
, fmt
, ap
);
904 return strbuf_detach(&buf
, NULL
);
907 char *xstrfmt(const char *fmt
, ...)
913 ret
= xstrvfmt(fmt
, ap
);
919 void strbuf_addftime(struct strbuf
*sb
, const char *fmt
, const struct tm
*tm
,
920 int tz_offset
, int suppress_tz_name
)
922 struct strbuf munged_fmt
= STRBUF_INIT
;
930 * There is no portable way to pass timezone information to
931 * strftime, so we handle %z and %Z here. Likewise '%s', because
932 * going back to an epoch time requires knowing the zone.
934 * Note that tz_offset is in the "[-+]HHMM" decimal form; this is what
935 * we want for %z, but the computation for %s has to convert to number
938 while (strbuf_expand_step(&munged_fmt
, &fmt
)) {
939 if (skip_prefix(fmt
, "%", &fmt
))
940 strbuf_addstr(&munged_fmt
, "%%");
941 else if (skip_prefix(fmt
, "s", &fmt
))
942 strbuf_addf(&munged_fmt
, "%"PRItime
,
943 (timestamp_t
)tm_to_time_t(tm
) -
944 3600 * (tz_offset
/ 100) -
945 60 * (tz_offset
% 100));
946 else if (skip_prefix(fmt
, "z", &fmt
))
947 strbuf_addf(&munged_fmt
, "%+05d", tz_offset
);
948 else if (suppress_tz_name
&& skip_prefix(fmt
, "Z", &fmt
))
951 strbuf_addch(&munged_fmt
, '%');
953 fmt
= munged_fmt
.buf
;
955 strbuf_grow(sb
, hint
);
956 len
= strftime(sb
->buf
+ sb
->len
, sb
->alloc
- sb
->len
, fmt
, tm
);
960 * strftime reports "0" if it could not fit the result in the buffer.
961 * Unfortunately, it also reports "0" if the requested time string
962 * takes 0 bytes. So our strategy is to munge the format so that the
963 * output contains at least one character, and then drop the extra
964 * character before returning.
966 strbuf_addch(&munged_fmt
, ' ');
969 strbuf_grow(sb
, hint
);
970 len
= strftime(sb
->buf
+ sb
->len
, sb
->alloc
- sb
->len
,
973 len
--; /* drop munged space */
975 strbuf_release(&munged_fmt
);
976 strbuf_setlen(sb
, sb
->len
+ len
);
980 * Returns the length of a line, without trailing spaces.
982 * If the line ends with newline, it will be removed too.
984 static size_t cleanup(char *line
, size_t len
)
987 unsigned char c
= line
[len
- 1];
997 * Remove empty lines from the beginning and end
998 * and also trailing spaces from every line.
1000 * Turn multiple consecutive empty lines between paragraphs
1001 * into just one empty line.
1003 * If the input has only empty lines and spaces,
1004 * no output will be produced.
1006 * If last line does not have a newline at the end, one is added.
1008 * Pass a non-NUL comment_line_char to skip every line starting
1011 void strbuf_stripspace(struct strbuf
*sb
, char comment_line_char
)
1014 size_t i
, j
, len
, newlen
;
1017 /* We may have to add a newline. */
1020 for (i
= j
= 0; i
< sb
->len
; i
+= len
, j
+= newlen
) {
1021 eol
= memchr(sb
->buf
+ i
, '\n', sb
->len
- i
);
1022 len
= eol
? eol
- (sb
->buf
+ i
) + 1 : sb
->len
- i
;
1024 if (comment_line_char
&& len
&&
1025 sb
->buf
[i
] == comment_line_char
) {
1029 newlen
= cleanup(sb
->buf
+ i
, len
);
1031 /* Not just an empty line? */
1033 if (empties
> 0 && j
> 0)
1034 sb
->buf
[j
++] = '\n';
1036 memmove(sb
->buf
+ j
, sb
->buf
+ i
, newlen
);
1037 sb
->buf
[newlen
+ j
++] = '\n';
1043 strbuf_setlen(sb
, j
);
1046 void strbuf_strip_file_from_path(struct strbuf
*sb
)
1048 char *path_sep
= find_last_dir_sep(sb
->buf
);
1049 strbuf_setlen(sb
, path_sep
? path_sep
- sb
->buf
+ 1 : 0);