Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
asn1c
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
asn1c
Commits
686f38bf
Commit
686f38bf
authored
Nov 14, 2017
by
Lev Walkin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
constness fix
parent
37b57991
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
skeletons/asn_application.c
skeletons/asn_application.c
+2
-2
skeletons/asn_application.h
skeletons/asn_application.h
+2
-2
No files found.
skeletons/asn_application.c
View file @
686f38bf
...
...
@@ -131,8 +131,8 @@ callback_failure_catch_cb(const void *data, size_t size, void *keyp) {
asn_enc_rval_t
asn_encode
(
const
asn_codec_ctx_t
*
opt_codec_ctx
,
enum
asn_transfer_syntax
syntax
,
asn_TYPE_descriptor_t
*
td
,
void
*
sptr
,
asn_app_consume_bytes_f
*
callback
,
void
*
callback_key
)
{
enum
asn_transfer_syntax
syntax
,
const
asn_TYPE_descriptor_t
*
td
,
const
void
*
sptr
,
asn_app_consume_bytes_f
*
callback
,
void
*
callback_key
)
{
struct
callback_failure_catch_key
cb_key
;
asn_enc_rval_t
er
;
...
...
skeletons/asn_application.h
View file @
686f38bf
...
...
@@ -129,8 +129,8 @@ typedef int(asn_app_consume_bytes_f)(const void *buffer, size_t size,
asn_enc_rval_t
asn_encode
(
const
asn_codec_ctx_t
*
opt_codec_parameters
,
/* See asn_codecs.h */
enum
asn_transfer_syntax
,
struct
asn_TYPE_descriptor_s
*
type_to_encode
,
void
*
structure_to_encode
,
const
struct
asn_TYPE_descriptor_s
*
type_to_encode
,
const
void
*
structure_to_encode
,
asn_app_consume_bytes_f
*
callback
,
void
*
callback_key
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment