pr25310.c
来自「用于进行gcc测试」· C语言 代码 · 共 23 行
C
23 行
/* Prevent spurious test failures on 16-bit targets. */#if __INT_MAX__ >= 2147483647Lextern int f (char *, int);void test (void){ char buffer[65536]; char *bufptr; char *bufend; int bytes; bufptr = buffer; bufend = buffer + sizeof(buffer) - 1; while ((bytes = f (bufptr, bufend - bufptr)) > 0) bufptr += bytes;}#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?