(make_stream_from_ft_face, free_stream, read_offset_table): Make
them static.
typedef long OTF_StreamState;
-OTF_Stream *
+static OTF_Stream *
make_stream (const char *name)
{
OTF_Stream *stream;
return stream;
}
-int
+static int
setup_stream (OTF_Stream *stream, FILE *fp, long offset, int nbytes)
{
char *errfmt = "stream setup for %s";
return 0;
}
-OTF_Stream *
+static OTF_Stream *
make_stream_from_ft_face (FT_Face face, const char *name)
{
char *errfmt = "FT_Face stream creation for %s";
return stream;
}
-void
+static void
free_stream (OTF_Stream *stream)
{
free (stream->buf);
\f
/*** (1-11) Structure for OTF */
-int
+static int
read_offset_table (OTF *otf, OTF_Stream *stream, OTF_OffsetTable *table)
{
int errret = -1;