/itexToMML

To download this project, use:
bzr branch http://golem.ph.utexas.edu/~distler/code/itexToMML/

« back to all changes in this revision

Viewing changes to itex-src/itex2MML.i

  • Committer: Jacques Distler
  • Date: 2016-08-14 21:56:27 UTC
  • Revision ID: distler@golem.ph.utexas.edu-20160814215627-s85ojfrb4unki05t
Tags: 1.5.3
itex2MML 1.5.3

Build fixes for Bison3 and Ruby.
Buffer length type: unsigned long => size_t.
Fix an issue on Windows (and possibly other) Ruby platforms.
  (Thanks to Rod McGuire and David Aaron Fendley)
Clean up itex_stringsupport.rb.
Update tests.

Show diffs side-by-side

added added

removed removed

3
3
#include "itex2MML.h"
4
4
extern const char * itex2MML_output ();
5
5
%}
6
 
extern int    itex2MML_filter (const char * buffer, unsigned long length);
7
 
extern int    itex2MML_html_filter (const char * buffer, unsigned long length);
 
6
extern int    itex2MML_filter (const char * buffer, size_t length);
 
7
extern int    itex2MML_html_filter (const char * buffer, size_t length);
8
8
extern const char * itex2MML_output ();