unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
blob aff2d6559fa84c0d2c65240ca488529169d1881d 1252 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
36
37
38
39
40
41
42
 
#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);

/* Construct a boolean term query with the specified prefix (e.g.,
 * "id") and search term, quoting term as necessary.
 *
 * Output is into buf; it may be talloc_realloced.
 * Return: 0 on success, non-zero on memory allocation failure.
 */
int make_boolean_term (void *talloc_ctx, const char *prefix, const char *term,
		       char **buf, size_t *len);

/* Parse a boolean term query produced by make_boolean_term, returning
 * the prefix in *prefix_out and the term in *term_out.  *prefix_out
 * and *term_out will be talloc'd with context ctx.
 *
 * Return: 0 on success, non-zero on parse error (including trailing
 * data in str).
 */
int
parse_boolean_term (void *ctx, const char *str,
		    char **prefix_out, char **term_out);

#endif

debug log:

solving aff2d65 ...
found aff2d65 in https://yhetil.org/notmuch/1356493723-11085-3-git-send-email-amdragon@mit.edu/ ||
	https://yhetil.org/notmuch/1356493723-11085-1-git-send-email-amdragon@mit.edu/
found 7475e2c in https://yhetil.org/notmuch/1356415076-5692-2-git-send-email-amdragon@mit.edu/ ||
	https://yhetil.org/notmuch/1356493723-11085-2-git-send-email-amdragon@mit.edu/
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/1356415076-5692-2-git-send-email-amdragon@mit.edu/
diff --git a/util/string-util.h b/util/string-util.h
index ac7676c..7475e2c 100644

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

skipping https://yhetil.org/notmuch/1356493723-11085-2-git-send-email-amdragon@mit.edu/ for 7475e2c
index at:
100644 7475e2c314e92bae59a8888cc42eab0b33025df2	util/string-util.h

applying [2/2] https://yhetil.org/notmuch/1356493723-11085-3-git-send-email-amdragon@mit.edu/
diff --git a/util/string-util.h b/util/string-util.h
index 7475e2c..aff2d65 100644

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

skipping https://yhetil.org/notmuch/1356493723-11085-1-git-send-email-amdragon@mit.edu/ for aff2d65
index at:
100644 aff2d6559fa84c0d2c65240ca488529169d1881d	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).