From ca01dd726e2ed8f8b69f8ff08855e80f4eea7247 Mon Sep 17 00:00:00 2001 From: Tyge Løvset Date: Mon, 26 Sep 2022 08:08:47 +0200 Subject: DEPRECATED: c_forrange(): replaced with c_forloop(). This uses 'long long' as iter type, i.e. "%lld" printf format. crange_from() renamed to crange_make(). More docs. --- docs/cqueue_api.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/cqueue_api.md') diff --git a/docs/cqueue_api.md b/docs/cqueue_api.md index a8be9e86..43f953b3 100644 --- a/docs/cqueue_api.md +++ b/docs/cqueue_api.md @@ -68,10 +68,10 @@ int main() { cqueue_i Q = cqueue_i_init(); // push() and pop() a few. - c_forrange (i, 20) + c_forloop (i, 20) cqueue_i_push(&Q, i); - c_forrange (5) + c_forloop (5) cqueue_i_pop(&Q); c_foreach (i, cqueue_i, Q) -- cgit v1.2.3