我用geany,采用ctrl-j,可以重排。但是每行的右边界成锯齿型,不好看
DESCRIPTION
The malloc() function allocates size bytes and
returns a pointer to the allocated memory. The
memory is not initialized. If size is 0, then
malloc() returns either NULL, or a unique pointer
value that can later be successfully passed to
free().
The free() function frees the memory space pointed
to by ptr, which must have been returned by a
previous call to malloc(), calloc(), or realloc().
Otherwise, or if free(ptr) has already been called
before, undefined behavior occurs. If ptr is NULL,
no operation is performed.
※ 修改:·gnwd 于 Dec 19 17:24:55 2021 修改本文·[FROM: 125.86.91.*]
※ 来源:·水木社区
http://www.mysmth.net·[FROM: 125.86.91.*]
修改:gnwd FROM 125.86.91.*
FROM 125.86.91.*