vec_calloc.c
来自「俄罗斯高人Mamaich的Pocket gcc编译器(运行在PocketPC上)」· C语言 代码 · 共 67 行
C
67 行
/*FUNCTION<<vec_calloc>>---allocate space for arraysINDEX vec_callocINDEX _vec_calloc_rANSI_SYNOPSIS #include <stdlib.h> void *vec_calloc(size_t <[n]>, size_t <[s]>); void *vec_calloc_r(void *<[reent]>, size_t <n>, <size_t> <[s]>); TRAD_SYNOPSIS #include <stdlib.h> char *vec_calloc(<[n]>, <[s]>) size_t <[n]>, <[s]>; char *_vec_calloc_r(<[reent]>, <[n]>, <[s]>) char *<[reent]>; size_t <[n]>; size_t <[s]>;DESCRIPTIONUse <<vec_calloc>> to request a block of memory sufficient to hold anarray of <[n]> elements, each of which has size <[s]>.The memory allocated by <<vec_calloc>> comes out of the same memory poolused by <<vec_malloc>>, but the memory block is initialized to all zerobytes. (To avoid the overhead of initializing the space, use<<vec_malloc>> instead.)The alternate function <<_vec_calloc_r>> is reentrant.The extra argument <[reent]> is a pointer to a reentrancy structure.RETURNSIf successful, a pointer to the newly allocated space.If unsuccessful, <<NULL>>.PORTABILITY<<vec_calloc>> is an non-ANSI extension described in the AltiVec ProgrammingInterface Manual.Supporting OS subroutines required: <<close>>, <<fstat>>, <<isatty>>,<<lseek>>, <<read>>, <<sbrk>>, <<write>>.*/#include <string.h>#include <stdlib.h>#ifndef _REENT_ONLY_PTR_DEFUN (vec_calloc, (n, size), size_t n _AND size_t size){ return _vec_calloc_r (_REENT, n, size);}#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?