Bioplib
Protein Structure C Library
|
#include <ctype.h>
#include <string.h>
Go to the source code of this file.
Functions | |
char * | blStrncat (char *out, const char *in, size_t len) |
char* blStrncat | ( | char * | out, |
const char * | in, | ||
size_t | len | ||
) |
[in] | *in | Input string to be appended |
[in] | len | Length of output string |
[in,out] | *out | String that we are appending to |
A simpler version of strncat. strncat takes the max number of chars to be appended whereas this takes the max number of chars that 'out' can hold.
Definition at line 97 of file stringcat.c.