FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
msgpack-php/msgpack_errors.h at master · msgpack/msgpack-php · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
msgpack
/
msgpack-php
Public
Notifications
You must be signed in to change notification settings
Fork
117
Star
787
Code
Issues
18
Pull requests
1
Actions
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
msgpack-php
/
msgpack_errors.h
Copy path
More file actions
More file actions
Latest commit
History
History
History
16 lines (12 loc) · 406 Bytes
Breadcrumbs
msgpack-php
/
msgpack_errors.h
Copy path
File metadata and controls
16 lines (12 loc) · 406 Bytes
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
#ifndef
MSGPACK_ERRORS_H
#define
MSGPACK_ERRORS_H
#define
MSGPACK_NOTICE
(...) \
if (MSGPACK_G(error_display)) { \
zend_error(E_NOTICE, __VA_ARGS__); \
}
#define
MSGPACK_WARNING
(...) \
if (MSGPACK_G(error_display)) { \
zend_error(E_WARNING, __VA_ARGS__); \
}
#define
MSGPACK_ERROR
(...) zend_error(E_ERROR, __VA_ARGS__)
#endif
Back
|
FazBrowse Home
|
New Git URL