summaryrefslogtreecommitdiffhomepage
path: root/docs
diff options
context:
space:
mode:
authorTyge Løvset <[email protected]>2022-10-21 09:31:17 +0200
committerTyge Løvset <[email protected]>2022-10-21 09:31:17 +0200
commit3eb08b0372dd669af535a368e8a8cdb8a9c793c5 (patch)
tree05d70cd2fe623eddc94280767c88332d8773405f /docs
parent2cefae32252f3051f75f44f4718a62a1210bd3a7 (diff)
downloadSTC-modified-3eb08b0372dd669af535a368e8a8cdb8a9c793c5.tar.gz
STC-modified-3eb08b0372dd669af535a368e8a8cdb8a9c793c5.zip
Renamed size_t formatting macro c_zu to c_ZU (for replacing %zu on mingw64).
Diffstat (limited to 'docs')
-rw-r--r--docs/cbits_api.md6
-rw-r--r--docs/cstr_api.md2
2 files changed, 4 insertions, 4 deletions
diff --git a/docs/cbits_api.md b/docs/cbits_api.md
index 51c89f21..b21611df 100644
--- a/docs/cbits_api.md
+++ b/docs/cbits_api.md
@@ -91,18 +91,18 @@ cbits sieveOfEratosthenes(size_t n)
int main(void)
{
size_t n = 100000000;
- printf("computing prime numbers up to %" c_zu "\n", n);
+ printf("computing prime numbers up to %" c_ZU "\n", n);
clock_t t1 = clock();
cbits primes = sieveOfEratosthenes(n + 1);
size_t nprimes = cbits_count(&primes);
clock_t t2 = clock();
- printf("number of primes: %" c_zu ", time: %f\n", nprimes, (float)(t2 - t1)/CLOCKS_PER_SEC);
+ printf("number of primes: %" c_ZU ", time: %f\n", nprimes, (float)(t2 - t1)/CLOCKS_PER_SEC);
printf(" 2");
for (size_t i = 3; i < 1000; i += 2)
- if (cbits_test(&primes, i>>1)) printf(" %" c_zu, i);
+ if (cbits_test(&primes, i>>1)) printf(" %" c_ZU, i);
puts("");
cbits_drop(&primes);
diff --git a/docs/cstr_api.md b/docs/cstr_api.md
index ceeeac2a..a3211a52 100644
--- a/docs/cstr_api.md
+++ b/docs/cstr_api.md
@@ -161,7 +161,7 @@ char* c_strnstrn(const char* str, const char* search, size_t slen, size_t
int main() {
cstr s0 = cstr_new("Initialization without using strlen().");
- printf("%s\nLength: %" c_zu "\n\n", cstr_str(&s0), cstr_size(&s0));
+ printf("%s\nLength: %" c_ZU "\n\n", cstr_str(&s0), cstr_size(&s0));
cstr s1 = cstr_new("one-nine-three-seven-five.");
printf("%s\n", cstr_str(&s1));