Select Git revision
Forked from
Nettle / nettle
Source project has a limited visibility.
-
Niels Möller authored
* sexp-transport-format.c (base64_encode_in_place): New helper function. (sexp_transport_vformat): Use it. * testsuite/base64-test.c (test_fuzz_once): Update to use char type where appropriate. (test_main): Use helper functions base64_encode_in_place and base64_decode_in_place (copied to this file). * tools/pkcs1-conv.c (base64_decode_in_place): New helper function. (decode_base64): Use it.
Niels Möller authored* sexp-transport-format.c (base64_encode_in_place): New helper function. (sexp_transport_vformat): Use it. * testsuite/base64-test.c (test_fuzz_once): Update to use char type where appropriate. (test_main): Use helper functions base64_encode_in_place and base64_decode_in_place (copied to this file). * tools/pkcs1-conv.c (base64_decode_in_place): New helper function. (decode_base64): Use it.
peep.h 565 B
/*
* $Id: peep.h,v 1.4 1998/03/28 15:06:27 grubba Exp $
*/
#ifndef PEEP_H
#define PEEP_H
#include "dynamic_buffer.h"
extern dynamic_buffer instrbuf;
/* Prototypes begin here */
struct p_instr_s;
void init_bytecode(void);
void exit_bytecode(void);
int insert_opcode(unsigned int f,
INT32 b,
INT32 current_line,
struct pike_string *current_file);
int insert_opcode2(int f,int current_line, struct pike_string *current_file);
void update_arg(int instr,INT32 arg);
void ins_f_byte(unsigned int b);
void assemble(void);
/* Prototypes end here */
#endif