blob: c9eae3b8ee8ce15d0a3368533d799ccc0008171c [file] [log] [blame]
Adam Cozzette501ecec2023-09-26 14:36:20 -07001// Protocol Buffers - Google's data interchange format
2// Copyright 2023 Google LLC. All rights reserved.
Adam Cozzette501ecec2023-09-26 14:36:20 -07003//
Protobuf Team Bot0fab7732023-11-20 13:38:15 -08004// Use of this source code is governed by a BSD-style
5// license that can be found in the LICENSE file or at
6// https://developers.google.com/open-source/licenses/bsd
Adam Cozzette501ecec2023-09-26 14:36:20 -07007
8#ifndef PYUPB_UNKNOWN_FIELDS_H__
9#define PYUPB_UNKNOWN_FIELDS_H__
10
11#include <stdbool.h>
12
13#include "python/python_api.h"
14
15PyObject* PyUpb_UnknownFields_New(PyObject* msg);
16
17bool PyUpb_UnknownFields_Init(PyObject* m);
18
19#endif // PYUPB_UNKNOWN_FIELDS_H__