PROWAREtech
procedures
.
..
C/C++: atoi Procedure (atol, atoul, atoll, atoull)
Convert ASCII c-string to a number.
C/C++: Euler's Math Library
Essential math functions around Euler's number, including natural log, log(), and e to the x power (e^x), exp(); includes supporting functions isinf(), isnan(), ceil(), fabs() and sqrt().
C/C++: Inverted Sigmoid Decay Function
A C/C++ function that returns a value nearer to an initial value in the beginning then, as the input is nears the end, it begins to decrease its output; graphed it would be nearly straight until it would steeply decrease near the end.
C/C++: itoa Procedure (ltoa, ultoa, lltoa, ulltoa)
Convert a number to an ASCII c-string.
C/C++: LERP - Linear Interpolation Function
A useful function for easing the transition between two values over time.
C/C++: strcat Procedure
Concatenate ASCII c-string.
C/C++: strcmp Procedure
Compare two ASCII c-strings.
C/C++: strcmpi Procedure (stricmp)
Compare two ASCII c-strings, ignore case.
C/C++: strcpy Procedure
Copy ASCII c-string.
C/C++: strlen Procedure
Find length of ASCII c-string.
C/C++: strstr Procedure
Find a substring in an ASCII c-string.
C/C++: strtok Procedure
Find token in ASCII c-string.