unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
blob b46f98173f944531d0c0a37032441b68f8ed6d5c 1033 bytes (raw)
name: util/string-util.h 	 # note: path name is non-authoritative(*)

 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
 
#ifndef _STRING_UTIL_H
#define _STRING_UTIL_H

#include <string.h>

/* like strtok(3), but without state, and doesn't modify s.  Return
 * value is indicated by pointer and length, not null terminator.
 *
 * Usage pattern:
 *
 * const char *tok = input;
 * const char *delim = " \t";
 * size_t tok_len = 0;
 *
 * while ((tok = strtok_len (tok + tok_len, delim, &tok_len)) != NULL) {
 *     // do stuff with string tok of length tok_len
 * }
 */

char *strtok_len (char *s, const char *delim, size_t *len);

/* like strspn, but consider at most `n' characters of 's'. `accept'
 * must be null terminated; `s' may be null terminated.
 */
size_t strnspn (const char *s, size_t n, const char *accept);

/* Copy str to dest, surrounding with double quotes.
 * Any internal double-quotes are doubled, i.e. a"b -> "a""b"
 *
 * Output is into buf; it may be talloc_realloced
 * Return: 0 on success, non-zero on memory allocation failure.
 */
int double_quote_str (void *talloc_ctx, const char *str,
		      char **buf, size_t *len);
#endif

debug log:

solving b46f981 ...
found b46f981 in https://yhetil.org/notmuch/1356095307-22895-5-git-send-email-david@tethera.net/
found 4fc7942 in https://yhetil.org/notmuch/1356313183-9266-5-git-send-email-david@tethera.net/ ||
	https://yhetil.org/notmuch/1356095307-22895-4-git-send-email-david@tethera.net/ ||
	https://yhetil.org/notmuch/87sj6z7ctm.fsf@zancas.localnet/
found ac7676c in https://yhetil.org/notmuch.git/
preparing index
index prepared:
100644 ac7676c883d742febbbcc3614f2f6a35a57eefe1	util/string-util.h

applying [1/2] https://yhetil.org/notmuch/1356313183-9266-5-git-send-email-david@tethera.net/
diff --git a/util/string-util.h b/util/string-util.h
index ac7676c..4fc7942 100644

Checking patch util/string-util.h...
Applied patch util/string-util.h cleanly.

skipping https://yhetil.org/notmuch/1356095307-22895-4-git-send-email-david@tethera.net/ for 4fc7942
skipping https://yhetil.org/notmuch/87sj6z7ctm.fsf@zancas.localnet/ for 4fc7942
index at:
100644 4fc79429b1e3b4ba9ee9df4aca3ab6ecdde65fef	util/string-util.h

applying [2/2] https://yhetil.org/notmuch/1356095307-22895-5-git-send-email-david@tethera.net/
diff --git a/util/string-util.h b/util/string-util.h
index 4fc7942..b46f981 100644

Checking patch util/string-util.h...
Applied patch util/string-util.h cleanly.

index at:
100644 b46f98173f944531d0c0a37032441b68f8ed6d5c	util/string-util.h

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://yhetil.org/notmuch.git/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).