bool
strnins(
char
*
dst, size_t n,
const
char
*
src,
int
pos);
/*
***********************************************
有以下几种情况要考虑
** dst ==NULL
** src == NULL
** pos超过尾部
** 希望对pos为负数时,能按python的方式解释.
** 如果dst空间不够时,只插入src的一部分.
*************************************************
*/