removed unnecesary asterisk
This commit is contained in:
parent
eaf0ea8324
commit
de9398f564
|
@ -27,7 +27,7 @@ int getfilec(FILE *file, char arr[]); /* fills 'arr[]' with every character on '
|
||||||
int powerof(int base, int exponent); /* returns power of base to the exponent */
|
int powerof(int base, int exponent); /* returns power of base to the exponent */
|
||||||
int stringtoint(char number[], int length); /* returns an int of 'length' length from the string 'number', make sure string only has numbers in it or results will not be as expected */
|
int stringtoint(char number[], int length); /* returns an int of 'length' length from the string 'number', make sure string only has numbers in it or results will not be as expected */
|
||||||
int stringlength(char string[]); /* no security checks, make sure string is null terminated */
|
int stringlength(char string[]); /* no security checks, make sure string is null terminated */
|
||||||
int splitstr(char** dest, char line[], int index1, int index2); /* add a substring from 'line' to 'dest'. index1 is offset of characters read from 'line' and index2 is the place in 'dest' to store the new char, returns int with new offset of characters read from 'line' + 1 **/
|
int splitstr(char** dest, char line[], int index1, int index2); /* add a substring from 'line' to 'dest'. index1 is offset of characters read from 'line' and index2 is the place in 'dest' to store the new char, returns int with new offset of characters read from 'line' + 1 */
|
||||||
int countblanks(char line[]); /* return ammount of blanks in string */
|
int countblanks(char line[]); /* return ammount of blanks in string */
|
||||||
void newlinetonullbyte(char string[]); /* converts newline to nullbyte in a string, check that you only have newlines after the content you care about */
|
void newlinetonullbyte(char string[]); /* converts newline to nullbyte in a string, check that you only have newlines after the content you care about */
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue