EAGLE Help
strlen()
Function
Calculates the length of a string.
Syntax
int strlen(string s);
Returns
The
strlen
function returns the number of characters in the string.
Example
string s = "This is a string"; int l = strlen(s); printf("The string is %d characters long\n", l);
Index
Copyright © 1999 CadSoft Computer GmbH