fillit/src/get_amount.c
Gregory Tertyshny 60119d12bb some new changes
2016-12-21 16:47:36 +02:00

11 lines
No EOL
130 B
C

#include "fillit.h"
int get_amount(char **ttr)
{
int amount;
amount = 0;
while (ttr[amount])
amount++;
return (amount);
}