Commit c4e17a92 authored by Robert Edmonds's avatar Robert Edmonds

protobuf-c: "protoc-c" → "protoc-gen-c"

parent 4a3ebd71
/*
* Copyright (c) 2008-2023, Dave Benson and the protobuf-c authors.
* Copyright (c) 2008-2025, Dave Benson and the protobuf-c authors.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
......@@ -28,14 +28,14 @@
*/
/*! \file
* Support library for `protoc-c` generated code.
* Support library for `protoc-gen-c` generated code.
*
* This file implements the public API used by the code generated
* by `protoc-c`.
* by `protoc-gen-c`.
*
* \authors Dave Benson and the protobuf-c authors
*
* \copyright 2008-2014. Licensed under the terms of the [BSD-2-Clause] license.
* \copyright 2008-2025. Licensed under the terms of the [BSD-2-Clause] license.
*/
/**
......
/*
* Copyright (c) 2008-2023, Dave Benson and the protobuf-c authors.
* Copyright (c) 2008-2025, Dave Benson and the protobuf-c authors.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
......@@ -34,16 +34,17 @@
*
* This file defines the public API for the `libprotobuf-c` support library.
* This API includes interfaces that can be used directly by client code as well
* as the interfaces used by the code generated by the `protoc-c` compiler.
* as the interfaces used by the code generated by the `protoc-gen-c` compiler
* plugin.
*
* The `libprotobuf-c` support library performs the actual serialization and
* deserialization of Protocol Buffers messages. It interacts with structures,
* definitions, and metadata generated by the `protoc-c` compiler from .proto
* files.
* definitions, and metadata generated by the `protoc-gen-c` compiler plugin
* from .proto files.
*
* \authors Dave Benson and the `protobuf-c` authors.
*
* \copyright 2008-2014. Licensed under the terms of the [BSD-2-Clause] license.
* \copyright 2008-2025. Licensed under the terms of the [BSD-2-Clause] license.
*
* [protobuf-c]: https://github.com/protobuf-c/protobuf-c
* [Protocol Buffers]: https://developers.google.com/protocol-buffers/
......@@ -74,7 +75,7 @@
*
* - Identifiers for functions and globals are all lowercase, with camel case
* words separated by single underscores. For example, one of the function
* prototypes generated by `protoc-c` for the above example:
* prototypes generated by `protoc-gen-c` for the above example:
*
~~~{.c}
Foo__Bar__BazBah *
......@@ -803,7 +804,7 @@ protobuf_c_version_number(void);
#define PROTOBUF_C_VERSION_NUMBER 1005000
/**
* The minimum protoc-c version which works with the current version of the
* The minimum protoc-gen-c version which works with the current version of the
* protobuf-c headers.
*/
#define PROTOBUF_C_MIN_COMPILER_VERSION 1000000
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment