stack_vm/utils.c

11 lines
118 B
C

#include "./utils.h"
int str_len(char str[])
{
int pos = 0;
while (str[pos] != NULL)
pos++;
return pos;
}