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