add: tablen
This commit is contained in:
parent
13f3bb0730
commit
da8cce7750
@ -2,3 +2,4 @@
|
|||||||
|
|
||||||
#include "./src/lst/lst.h"
|
#include "./src/lst/lst.h"
|
||||||
#include "./src/str/str.h"
|
#include "./src/str/str.h"
|
||||||
|
#include "./src/tab/tab.h"
|
||||||
|
5
src/tab/tab.h
Normal file
5
src/tab/tab.h
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include <stddef.h>
|
||||||
|
|
||||||
|
size_t tablen(const void** tab);
|
8
src/tab/tablen.c
Normal file
8
src/tab/tablen.c
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
#include "tab.h"
|
||||||
|
|
||||||
|
size_t tablen(const void **tab)
|
||||||
|
{
|
||||||
|
size_t i;
|
||||||
|
for (i = 0; tab[i] != NULL; i++);
|
||||||
|
return i;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user