~ubuntu-branches/ubuntu/precise/libdatrie/precise

« back to all changes in this revision

Viewing changes to datrie/tail.c

  • Committer: Bazaar Package Importer
  • Author(s): Theppitak Karoonboonyanan
  • Date: 2010-06-30 16:40:33 UTC
  • mfrom: (1.2.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20100630164033-y9e6yt2gmuqeaode
* New upstream release
  - debian/libdatrie1.symbols: Add new symbols according to upstream.
* Bump Standards-Version to 3.9.0 (no changes needed)

Show diffs side-by-side

added added

removed removed

Lines of Context:
117
117
 * file pointer is left at the position after the read block.
118
118
 */
119
119
Tail *
120
 
tail_read (FILE *file)
 
120
tail_fread (FILE *file)
121
121
{
122
122
    long        save_pos;
123
123
    Tail       *t;
211
211
 * pointer. On return, the file pointer is left after the tail data block.
212
212
 */
213
213
int
214
 
tail_write (const Tail *t, FILE *file)
 
214
tail_fwrite (const Tail *t, FILE *file)
215
215
{
216
216
    TrieIndex   i;
217
217