unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
blob 4fc79429b1e3b4ba9ee9df4aca3ab6ecdde65fef 841 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
 
#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);

/* 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 4fc7942 ...
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/1] 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

(*) 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).