diff options
author | John MacFarlane <jgm@berkeley.edu> | 2015-06-26 12:23:42 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2015-06-26 12:23:42 -0700 |
commit | bae7b61487f58f296389d5007df7166ddcfecad8 (patch) | |
tree | 3b658b774f028c7a0b9962411a4a6a3e21850b42 /man | |
parent | 2f945071616d226296068e3c61b6de2e64c813cf (diff) | |
parent | 06b355f5a97bd5fb19cfad7e8065d5e8a6c37bce (diff) |
Merge pull request #61 from txdv/version-functions-ffi
Changed version variables to functions.
Diffstat (limited to 'man')
-rw-r--r-- | man/man3/cmark.3 | 18 |
1 files changed, 3 insertions, 15 deletions
diff --git a/man/man3/cmark.3 b/man/man3/cmark.3 index aa254b0..6edac7b 100644 --- a/man/man3/cmark.3 +++ b/man/man3/cmark.3 @@ -1,4 +1,4 @@ -.TH cmark 3 "June 16, 2015" "LOCAL" "Library Functions Manual" +.TH cmark 3 "June 25, 2015" "LOCAL" "Library Functions Manual" .SH NAME .PP @@ -556,13 +556,7 @@ sequences with the replacement character U+FFFD. Version information .PP -.nf -\fC -.RS 0n -extern const int cmark_version; -.RE -\f[] -.fi +\fIint\f[] \fBcmark_version\f[](\fI\f[]) .PP The library version as integer for runtime checks. Also available as @@ -577,13 +571,7 @@ Bits 0\-7 contain the patchlevel. In hexadecimal format, the number 0x010203 represents version 1.2.3. .PP -.nf -\fC -.RS 0n -extern const char cmark_version_string[]; -.RE -\f[] -.fi +\fIconst char *\f[] \fBcmark_version_string\f[](\fI\f[]) .PP The library version string for runtime checks. Also available as |