diff options
author | Jeff King <peff@peff.net> | 2014-06-18 15:42:14 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-06-18 14:56:54 -0700 |
commit | c0264180d74510669bcec9bb5ff12a145c685b8e (patch) | |
tree | ecd1875c4e0e09af61b0b2321e4f1e6f851ed04d /column.c | |
parent | daemon: mark some strings as const (diff) | |
download | tgif-c0264180d74510669bcec9bb5ff12a145c685b8e.tar.xz |
avoid using skip_prefix as a boolean
There's no point in using:
if (skip_prefix(buf, "foo"))
over
if (starts_with(buf, "foo"))
as the point of skip_prefix is to return a pointer to the
data after the prefix. Using starts_with is more readable,
and will make refactoring skip_prefix easier.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'column.c')
0 files changed, 0 insertions, 0 deletions