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
84cd58ec
Commit
84cd58ec
authored
Aug 19, 2004
by
Lev Walkin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
constraint checking code
parent
4b102255
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
508 additions
and
705 deletions
+508
-705
libasn1compiler/Makefile.am
libasn1compiler/Makefile.am
+2
-0
libasn1compiler/Makefile.in
libasn1compiler/Makefile.in
+7
-1
libasn1compiler/asn1c_C.c
libasn1compiler/asn1c_C.c
+9
-703
libasn1compiler/asn1c_constraint.c
libasn1compiler/asn1c_constraint.c
+482
-0
libasn1compiler/asn1c_constraint.h
libasn1compiler/asn1c_constraint.h
+7
-0
libasn1compiler/asn1c_internal.h
libasn1compiler/asn1c_internal.h
+1
-1
No files found.
libasn1compiler/Makefile.am
View file @
84cd58ec
...
...
@@ -13,7 +13,9 @@ libasn1compiler_la_SOURCES = \
asn1c_lang.c asn1c_lang.h
\
asn1c_save.c asn1c_save.h
\
asn1c_C.c asn1c_C.h
\
asn1c_constraint.c asn1c_constraint.h
\
asn1c_compat.c asn1c_compat.h
\
asn1c_fdeps.c asn1c_fdeps.h
\
asn1c_internal.h
TESTS
=
$(check_PROGRAMS)
...
...
libasn1compiler/Makefile.in
View file @
84cd58ec
...
...
@@ -53,7 +53,7 @@ LTLIBRARIES = $(noinst_LTLIBRARIES)
libasn1compiler_la_LIBADD
=
am_libasn1compiler_la_OBJECTS
=
asn1compiler.lo asn1c_misc.lo
\
asn1c_out.lo asn1c_lang.lo asn1c_save.lo asn1c_C.lo
\
asn1c_co
mpat
.lo
asn1c_co
nstraint.lo asn1c_compat.lo asn1c_fdeps
.lo
libasn1compiler_la_OBJECTS
=
$(am_libasn1compiler_la_OBJECTS)
check_compiler_SOURCES
=
check_compiler.c
check_compiler_OBJECTS
=
check_compiler.
$(OBJEXT)
...
...
@@ -66,6 +66,8 @@ depcomp = $(SHELL) $(top_srcdir)/depcomp
am__depfiles_maybe
=
depfiles
@AMDEP_TRUE@
DEP_FILES
=
./
$(DEPDIR)
/asn1c_C.Plo
\
@AMDEP_TRUE@ ./
$(DEPDIR)
/asn1c_compat.Plo
\
@AMDEP_TRUE@ ./
$(DEPDIR)
/asn1c_constraint.Plo
\
@AMDEP_TRUE@ ./
$(DEPDIR)
/asn1c_fdeps.Plo
\
@AMDEP_TRUE@ ./
$(DEPDIR)
/asn1c_lang.Plo
\
@AMDEP_TRUE@ ./
$(DEPDIR)
/asn1c_misc.Plo
\
@AMDEP_TRUE@ ./
$(DEPDIR)
/asn1c_out.Plo
\
...
...
@@ -208,7 +210,9 @@ libasn1compiler_la_SOURCES = \
asn1c_lang.c asn1c_lang.h
\
asn1c_save.c asn1c_save.h
\
asn1c_C.c asn1c_C.h
\
asn1c_constraint.c asn1c_constraint.h
\
asn1c_compat.c asn1c_compat.h
\
asn1c_fdeps.c asn1c_fdeps.h
\
asn1c_internal.h
TESTS
=
$(check_PROGRAMS)
...
...
@@ -279,6 +283,8 @@ distclean-compile:
@AMDEP_TRUE@@am__include@
@am__quote@./$(DEPDIR)/asn1c_C.Plo@am__quote@
@AMDEP_TRUE@@am__include@
@am__quote@./$(DEPDIR)/asn1c_compat.Plo@am__quote@
@AMDEP_TRUE@@am__include@
@am__quote@./$(DEPDIR)/asn1c_constraint.Plo@am__quote@
@AMDEP_TRUE@@am__include@
@am__quote@./$(DEPDIR)/asn1c_fdeps.Plo@am__quote@
@AMDEP_TRUE@@am__include@
@am__quote@./$(DEPDIR)/asn1c_lang.Plo@am__quote@
@AMDEP_TRUE@@am__include@
@am__quote@./$(DEPDIR)/asn1c_misc.Plo@am__quote@
@AMDEP_TRUE@@am__include@
@am__quote@./$(DEPDIR)/asn1c_out.Plo@am__quote@
...
...
libasn1compiler/asn1c_C.c
View file @
84cd58ec
This diff is collapsed.
Click to expand it.
libasn1compiler/asn1c_constraint.c
0 → 100644
View file @
84cd58ec
This diff is collapsed.
Click to expand it.
libasn1compiler/asn1c_constraint.h
0 → 100644
View file @
84cd58ec
#ifndef _ASN1C_CONSTRAINT_H_
#define _ASN1C_CONSTRAINT_H_
int
asn1c_emit_constraint_tables
(
arg_t
*
arg
,
asn1p_constraint_t
*
ct
);
int
asn1c_emit_constraint_checking_code
(
arg_t
*
arg
);
#endif
/* _ASN1C_CONSTRAINT_H_ */
libasn1compiler/asn1c_internal.h
View file @
84cd58ec
...
...
@@ -11,7 +11,7 @@
#include <unistd.h>
/* for unlink(2) */
#include <fcntl.h>
/* for open(2) */
#include <glob.h>
/* for glob(3) */
#include <string.h>
#include <string.h>
/* for strlen(3) and memset(3) */
#include <ctype.h>
/* for isalnum(3) */
#include <stdarg.h>
#include <errno.h>
...
...
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