fillit/src/get_amount.c

11 lines
130 B
C
Raw Normal View History

2016-12-21 16:47:36 +02:00
#include "fillit.h"
int get_amount(char **ttr)
{
int amount;
amount = 0;
while (ttr[amount])
amount++;
return (amount);
}