man -wK 'sizeof' | sort -u
을 포함하는 기사를 찾는 데 사용할 수 sizeof
있지만 많은 결과가 반환됩니다. 그러나 무언가에 관한 모든 기사는 공백으로 둘러싸인 단순한 단어로 그 것을 가질 것 zgrep -P '\ssizeof\s' /usr/share/man/man3/*
입니다. 그러나 섹션 3에서 검색해도 유용한 정보가 제공되지 않으므로 섹션 7에서 검색하겠습니다.
$ zgrep -P '\ssizeof\s' /usr/share/man/man7/*
/usr/share/man/man7/inotify.7.gz: len = read(fd, buf, sizeof buf);
/usr/share/man/man7/operator.7.gz:! ~ ++ \-\- + \- (type) * & sizeof right to left
보시다시피 , 함수는 아니지만 연산자 이며 위와 같은 식별자에 괄호 없이도 작동 sizeof
하기 때문에 연산자 매뉴얼 페이지에 언급되어 있습니다.sizeof buf
OPERATOR(7) Linux Programmer's Manual OPERATOR(7)
NAME top
operator - C operator precedence and order of evaluation
DESCRIPTION top
This manual page lists C operators and their precedence in
evaluation.
Operator Associativity
() [] -> . left to right
! ~ ++ -- + - (type) * & sizeof right to left
* / % left to right
+ - left to right
<< >> left to right
< <= > >= left to right
== != left to right
& left to right
^ left to right
| left to right
&& left to right
|| left to right
?: right to left
= += -= *= /= %= <<= >>= &= ^= |= right to left
, left to right
http://man7.org/linux/man-pages/man7/operator.7.html