FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-xmlsec/src/debug.h at master · mathspace/python-xmlsec · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
mathspace
/
python-xmlsec
Public
forked from
ener-i/python-xmlsec
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
python-xmlsec
/
src
/
debug.h
Copy path
More file actions
More file actions
Latest commit
History
History
History
25 lines (21 loc) · 1.04 KB
Breadcrumbs
python-xmlsec
/
src
/
debug.h
Copy path
File metadata and controls
25 lines (21 loc) · 1.04 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Copyright (c) 2017 Ryan Leckey
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
#ifndef
__PYXMLSEC_DEBUG_H__
#define
__PYXMLSEC_DEBUG_H__
#ifdef
PYXMLSEC_ENABLE_DEBUG
#include
<stdio.h>
#define
PYXMLSEC_DEBUG
(
fmt
) fprintf(stderr, "[%s:%d %s] " fmt "\n", __FILE__, __LINE__, __FUNCTION__)
#define
PYXMLSEC_DEBUGF
(
fmt
, ...) fprintf(stderr, "[%s:%d %s] " fmt "\n", __FILE__, __LINE__, __FUNCTION__, __VA_ARGS__)
#define
PYXMLSEC_DUMP
(
method
,
obj
) method(obj, stderr)
#else
#define
PYXMLSEC_DEBUG
(...)
#define
PYXMLSEC_DEBUGF
(...)
#define
PYXMLSEC_DUMP
(
method
,
obj
)
#endif
// PYXMLSEC_ENABLE_DEBUG
#endif
// __PYXMLSEC_DEBUG_H__
Back
|
FazBrowse Home
|
New Git URL