diff options
| author | Tyge Løvset <[email protected]> | 2022-10-12 17:56:17 +0200 |
|---|---|---|
| committer | Tyge Løvset <[email protected]> | 2022-10-12 17:56:17 +0200 |
| commit | b2103dc2084f2f0b05645acc7879c9ff5ad84a05 (patch) | |
| tree | 9865c420542cfbe1cb7c5779f2215f8de9fcdfb8 /docs/cbits_api.md | |
| parent | 5fb5ed08250b5ad4eadd6e7a9fdc44f4519b15ff (diff) | |
| download | STC-modified-b2103dc2084f2f0b05645acc7879c9ff5ad84a05.tar.gz STC-modified-b2103dc2084f2f0b05645acc7879c9ff5ad84a05.zip | |
Minor change in cbits print to str.
Diffstat (limited to 'docs/cbits_api.md')
| -rw-r--r-- | docs/cbits_api.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/cbits_api.md b/docs/cbits_api.md index 84878e30..269db9b3 100644 --- a/docs/cbits_api.md +++ b/docs/cbits_api.md @@ -40,7 +40,7 @@ bool cbits_test(const cbits* self, size_t i); bool cbits_at(const cbits* self, size_t i); // same as cbits_test() bool cbits_subset_of(const cbits* self, const cbits* other); // is set a subset of other? bool cbits_disjoint(const cbits* self, const cbits* other); // no common bits -char* cbits_to_str(const cbits* self, char* str, size_t start, intptr_t stop); +char* cbits_to_str(const cbits* self, char* str, size_t start, size_t stop); void cbits_set(cbits* self, size_t i); void cbits_reset(cbits* self, size_t i); |
