Skip to content
Snippets Groups Projects
Commit aed9c008 authored by Niels Möller's avatar Niels Möller
Browse files

* tools/sexp-conv.c (sexp_convert_string): Deleted function.

(sexp_skip_token): Likewise.

* tools/sexp-conv.c (enum sexp_token): New constant SEXP_DISPLAY.
Start constants from 1, to keep 0 free for special uses.
(struct sexp_parse_state): New struct for keeping track of parser
state.
(sexp_parse_init): New function.
(sexp_check_token): New function, replacing sexp_skip_token.
(sexp_parse): New function.
(sexp_convert_item): Simplified by using sexp_parse.
(sexp_convert_list): Use sexp_parse.
(main): Likewise.

Rev: src/nettle/tools/sexp-conv.c:1.8
parent 4689295c
No related branches found
No related tags found
No related merge requests found
...@@ -968,36 +968,12 @@ sexp_put_digest(struct sexp_output *output) ...@@ -968,36 +968,12 @@ sexp_put_digest(struct sexp_output *output)
/* Conversion functions. */ /* Conversion functions. */
#if 0
static void
sexp_convert_string(struct sexp_input *input, enum sexp_mode mode_in,
struct sexp_output *output, enum sexp_mode mode_out)
{
sexp_get_token(input, mode_in);
if (input->token == SEXP_STRING)
sexp_put_string(output, mode_out, &input->string);
else
die("Invalid string.\n");
}
#endif
static void static void
sexp_convert_list(struct sexp_input *input, struct sexp_parse_state *parser, sexp_convert_list(struct sexp_input *input, struct sexp_parse_state *parser,
struct sexp_output *output, enum sexp_mode mode_out, struct sexp_output *output, enum sexp_mode mode_out,
unsigned indent); unsigned indent);
#if 0
static void
sexp_skip_token(struct sexp_input *input, enum sexp_mode mode,
enum sexp_token token)
{
sexp_get_token(input, mode);
if (input->token != token)
die("Syntax error.\n");
}
#endif
/* Should be called with input->token being the first token of the /* Should be called with input->token being the first token of the
* expression, to be converted, and return with input->token being the * expression, to be converted, and return with input->token being the
* last token of the expression. */ * last token of the expression. */
...@@ -1040,19 +1016,6 @@ sexp_convert_item(struct sexp_input *input, struct sexp_parse_state *parser, ...@@ -1040,19 +1016,6 @@ sexp_convert_item(struct sexp_input *input, struct sexp_parse_state *parser,
sexp_put_string(output, mode_out, &input->string); sexp_put_string(output, mode_out, &input->string);
break; break;
#if 0
case SEXP_TRANSPORT_START:
if (mode_in == SEXP_CANONICAL)
die("Base64 not allowed in canonical mode.\n");
else
{
sexp_get_token(input, SEXP_CANONICAL);
sexp_convert_item(input, SEXP_CANONICAL, output, mode_out, indent);
sexp_skip_token(input, SEXP_CANONICAL, SEXP_CODING_END);
break;
}
#endif
default: default:
/* Internal error */ /* Internal error */
abort(); abort();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment