Angka  0.0.1
A C library focusing on data manipulation and visualization
counting the length of a C data types string

Functions

int agx_string_length_integer (int val)
 count the string length of an integer value More...
 
int agx_string_length_string (char *str)
 count the string length of a string More...
 
int agx_string_length_double (double val)
 count the string length of a double value More...
 

Detailed Description

Function Documentation

◆ agx_string_length_double()

int agx_string_length_double ( double  val)

count the string length of a double value

Parameters
val

usage:

int len;
Note
return negative value if error

◆ agx_string_length_integer()

int agx_string_length_integer ( int  val)

count the string length of an integer value

Parameters
val

usage:

int len;
Note
return negative value if error

◆ agx_string_length_string()

int agx_string_length_string ( char *  str)

count the string length of a string

Parameters
str

usage:

int len;
len = agx_string_length_string("hello world");
Note
return negative value if error