Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
varnish-cache
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
varnishcache
varnish-cache
Commits
83ab25a2
Unverified
Commit
83ab25a2
authored
Aug 12, 2020
by
Nils Goroll
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use our v_ attribute for marking the deprecation
Ref
904659a1
1594037c
parent
904659a1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
vsb.h
include/vsb.h
+2
-2
No files found.
include/vsb.h
View file @
83ab25a2
...
...
@@ -59,7 +59,7 @@ extern "C" {
/*
* API functions
*/
struct
vsb
*
VSB_new
(
struct
vsb
*
,
char
*
,
int
,
int
)
;
// DEPRECATED
struct
vsb
*
VSB_new
(
struct
vsb
*
,
char
*
,
int
,
int
)
v_deprecated_
;
struct
vsb
*
VSB_init
(
struct
vsb
*
,
void
*
,
ssize_t
);
struct
vsb
*
VSB_new_auto
(
void
);
void
VSB_clear
(
struct
vsb
*
);
...
...
@@ -76,7 +76,7 @@ int VSB_error(const struct vsb *);
int
VSB_finish
(
struct
vsb
*
);
char
*
VSB_data
(
const
struct
vsb
*
);
ssize_t
VSB_len
(
const
struct
vsb
*
);
void
VSB_delete
(
struct
vsb
*
)
;
// DEPRECATED
void
VSB_delete
(
struct
vsb
*
)
v_deprecated_
;
void
VSB_fini
(
struct
vsb
*
);
void
VSB_destroy
(
struct
vsb
**
);
#define VSB_QUOTE_NONL 1
...
...
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