Skip to content
Snippets Groups Projects
Select Git revision
  • ad7d35e75b4240f64ef8f8686df280eedb23df6d
  • master default protected
  • 8.0
  • 9.0
  • 7.8
  • 7.6
  • 7.4
  • 7.2
  • 7.0
  • 0.6
  • rosuav/latex-markdown-renderer
  • rxnpatch/rxnpatch
  • marcus/gobject-introspection
  • rxnpatch/8.0
  • rosuav/pre-listening-ports
  • nt-tools
  • rosuav/async-annotations
  • rosuav/pgsql-ssl
  • rxnpatch/rxnpatch-broken/2023-10-06T094250
  • grubba/fdlib
  • grubba/wip/sakura/8.0
  • v8.0.2004
  • v8.0.2002
  • v8.0.2000
  • v8.0.1998
  • v8.0.1996
  • v8.0.1994
  • v8.0.1992
  • v8.0.1990
  • v8.0.1988
  • v8.0.1986
  • rxnpatch/clusters/8.0/2025-04-29T124414
  • rxnpatch/2025-04-29T124414
  • v8.0.1984
  • v8.0.1982
  • v8.0.1980
  • v8.0.1978
  • v8.0.1976
  • v8.0.1974
  • v8.0.1972
  • v8.0.1970
41 results

dynamic_load.c

Blame
  • 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