libclamav/jsparse/js-norm.h
fd08e02e
 /*
  *  Javascript normalizer.
  *
46a35abe
  *  Copyright (C) 2015 Cisco Systems, Inc. and/or its affiliates. All rights reserved.
fd08e02e
  *  Copyright (C) 2008 Sourcefire, Inc.
  *
  *  Authors: Török Edvin
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License version 2 as
  *  published by the Free Software Foundation.
  *
  *  This program is distributed in the hope that it will be useful,
  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  *  GNU General Public License for more details.
  *
  *  You should have received a copy of the GNU General Public License
  *  along with this program; if not, write to the Free Software
  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  *  MA 02110-1301, USA.
  */
4a6ade44
 #ifndef JS_NORM_H
 #define JS_NORM_H
fd08e02e
 struct parser_state;
37e64729
 struct text_buffer;
 
8be1d5a4
 struct parser_state *cli_js_init(void);
fd08e02e
 void cli_js_process_buffer(struct parser_state *state, const char *buf, size_t n);
 void cli_js_parse_done(struct parser_state* state);
8be1d5a4
 void cli_js_output(struct parser_state *state, const char *tempdir);
fd08e02e
 void cli_js_destroy(struct parser_state *state);
37e64729
 
 char *cli_unescape(const char *str);
 
4a6ade44
 #endif