⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 strncpy.c

📁 标准c库代码,可以应用于各个系统提供了大量的基本函数
💻 C
字号:
/*FUNCTION	<<strncpy>>---counted copy stringINDEX	strncpyANSI_SYNOPSIS	#include <string.h>	char *strncpy(char *<[dst]>, const char *<[src]>, size_t <[length]>);TRAD_SYNOPSIS	#include <string.h>	char *strncpy(<[dst]>, <[src]>, <[length]>)	char *<[dst]>;	char *<[src]>;	size_t <[length]>;DESCRIPTION	<<strncpy>> copies not more than <[length]> characters from the	the string pointed to by <[src]> (including the terminating	null character) to the array pointed to by <[dst]>.  If the	string pointed to by <[src]> is shorter than <[length]>	characters, null characters are appended to the destination	array until a total of <[length]> characters have been	written.RETURNS	This function returns the initial value of <[dst]>.PORTABILITY<<strncpy>> is ANSI C.<<strncpy>> requires no supporting OS subroutines.QUICKREF	strncpy ansi pure*/#include <string.h>char *_DEFUN (strncpy, (dst, src, n),	char *dst _AND	_CONST char *src _AND	size_t n){  char *dscan;  _CONST char *sscan;  size_t count;  dscan = dst;  sscan = src;  count = n;  while (count > 0)    {      --count;      if ((*dscan++ = *sscan++) == '\0')	break;    }  while (count-- > 0)    *dscan++ = '\0';  return dst;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -