diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-03-28 23:52:13 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-03-28 23:52:13 +0000 |
commit | e1161d8a3fbeac9d7533b7553a92850ee8c3e809 (patch) | |
tree | 05d86f953c8a93a7f428f0f9cfa4158ce1541f3e /mandoc.c | |
parent | f9ed40780bf69c4c7b35c8f14faeb0fda9a1dcbd (diff) | |
download | mandoc-e1161d8a3fbeac9d7533b7553a92850ee8c3e809.tar.gz |
Have libman and libmdoc use mandoc_getcontrol() to determine whether a
macro has been invoked. libroff is next.
Diffstat (limited to 'mandoc.c')
-rw-r--r-- | mandoc.c | 25 |
1 files changed, 25 insertions, 0 deletions
@@ -506,3 +506,28 @@ mandoc_hyph(const char *start, const char *c) return(1); } +/* + * Find out whether a line is a macro line or not. If it is, adjust the + * current position and return one; if it isn't, return zero and don't + * change the current position. + */ +int +mandoc_getcontrol(const char *cp, int *ppos) +{ + int pos; + + pos = *ppos; + + if ('\\' == cp[pos] && '.' == cp[pos + 1]) + pos += 2; + else if ('.' == cp[pos] || '\'' == cp[pos]) + pos++; + else + return(0); + + while (' ' == cp[pos] || '\t' == cp[pos]) + pos++; + + *ppos = pos; + return(1); +} |