[roll] Roll third_party/pigweed docs: Clarify extern "C" and (void) parameter lists

Functions in C++ with `extern "C"` are still C++ functions, so avoid the
term "C functions" in this context.

Because the meaning of an empty parameter list (`int foo()`) has a
different meaning in C (any number of arguments) than C++ (no
arguments), we require `(void)` in header files declaring functions
which may be called from C code.

While `(void)` is not necessary in the C++ definition of these functions
(and arguably in violation of the C++ style guide), we use `(void)` here
also for visual consistency with the declaration in the header file.

Original-Bug: 403532598
Original-Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/275913
Presubmit-Verified: CQ Bot Account <pigweed-scoped@luci-project-accounts.iam.gserviceaccount.com>
Original-Revision: f9f93dd4a7f4bd8264f4456def8daf966805b75d
GitOrigin-RevId: a979e78fdc304ab5ea6b10be0efe2336b7bd8f09
Change-Id: I525b75e7d310f18002e70b95fae20ee643198b3e
1 file changed
tree: ca098f10a03c7ad43a4d436dde1830eaeffcffa1
  1. ctf/
  2. git-hooks/
  3. infra/
  4. third_party/
  5. cts
  6. firmware
  7. flower
  8. jiri.lock
  9. MILESTONE
  10. minimal
  11. prebuilts
  12. README.md
  13. stem
  14. test_durations
  15. toolchain
README.md

Integration

This repository contains Fuchsia's Global Integration manifest files.

Making changes

All changes should be made to the internal version of this repository. Our infrastructure automatically updates this version when the internal one changes.

Currently all changes must be made by a Google employee. Non-Google employees wishing to make a change can ask for assistance in one of the communication channels documented at get involved.

Obtaining the source

First install Jiri.

Next run:

$ jiri init
$ jiri import minimal https://fuchsia.googlesource.com/integration
$ jiri update

Third party

Third party projects should have their own subdirectory in ./third_party.