File: latex_parse.h

package info (click to toggle)
bibutils 7.2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,040 kB
  • sloc: ansic: 112,579; sh: 462; makefile: 42
file content (13 lines) | stat: -rw-r--r-- 181 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
 * latex_parse.h
 */
#ifndef LATEX_PARSE_H
#define LATEX_PARSE_H

#include "slist.h"

int latex_parse( str *in, str *out );
int latex_tokenize( slist *tokens, str *s );


#endif