]> git.ipfire.org Git - thirdparty/git.git/commit - config.c
config: add helper function for parsing key names
authorJeff King <peff@peff.net>
Wed, 23 Jan 2013 06:23:05 +0000 (01:23 -0500)
committerJunio C Hamano <gitster@pobox.com>
Wed, 23 Jan 2013 16:41:49 +0000 (08:41 -0800)
commit1b86bbb0ade4641c2da0dc74ebca1c09ec772bb4
tree349d2c169d9c9f84d855ea5d929407d0722ddaeb
parent94702dd1ac27618b60198f7c8bceafaaaf7743e2
config: add helper function for parsing key names

The config callback functions get keys of the general form:

  section.subsection.key

(where the subsection may be contain arbitrary data, or may
be missing). For matching keys without subsections, it is
simple enough to call "strcmp". Matching keys with
subsections is a little more complicated, and each callback
does it in an ad-hoc way, usually involving error-prone
pointer arithmetic.

Let's provide a helper that keeps the pointer arithmetic all
in one place.

Signed-off-by: Jeff King <peff@peff.net>
Reviewed-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
cache.h
config.c