Subversion Repositories SvarDOS

Rev

Rev 1291 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1291 Rev 1293
Line 326... Line 326...
326
}
326
}
327
 
327
 
328
 
328
 
329
static int svl_write_header(unsigned short num_strings, FILE *fd)
329
static int svl_write_header(unsigned short num_strings, FILE *fd)
330
{
330
{
331
  return (fwrite("SvL1\x1a", 1, 5, fd) == 5) &&
331
  return (fwrite("SvL\x1a", 1, 4, fd) == 4) &&
332
          (fwrite(&num_strings, 1, 2, fd) == 2);
332
          (fwrite(&num_strings, 1, 2, fd) == 2);
333
}
333
}
334
 
334
 
335
 
335
 
336
static int svl_write_lang(svl_lang_t *l, FILE *fd)
336
static int svl_write_lang(svl_lang_t *l, FILE *fd)