Ignore:
Timestamp:
Nov 1, 2016, 11:06:08 PM (9 years ago)
Author:
bird
Message:

fts-nt: prefix public names.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/lib/nt/fts-nt.c

    r2990 r2992  
    9595static FTSENT   *fts_sort(FTS *, FTSENT *, size_t);
    9696static int       fts_stat(FTS *, FTSENT *, int, HANDLE);
    97 static int  fts_process_stats(FTSENT *, BirdStat_T const *);
     97static int      fts_process_stats(FTSENT *, BirdStat_T const *);
    9898
    9999#define ISDOT(a)        (a[0] == '.' && (!a[1] || (a[1] == '.' && !a[2])))
     
    127127
    128128FTS * FTSCALL
    129 fts_open(char * const *argv, int options,
     129nt_fts_open(char * const *argv, int options,
    130130    int (*compar)(const FTSENT * const *, const FTSENT * const *))
    131131{
     
    271271
    272272int FTSCALL
    273 fts_close(FTS *sp)
     273nt_fts_close(FTS *sp)
    274274{
    275275        FTSENT *freep, *p;
     
    323323
    324324FTSENT * FTSCALL
    325 fts_read(FTS *sp)
     325nt_fts_read(FTS *sp)
    326326{
    327327        FTSENT *p, *tmp;
     
    498498/* ARGSUSED */
    499499int FTSCALL
    500 fts_set(FTS *sp, FTSENT *p, int instr)
     500nt_fts_set(FTS *sp, FTSENT *p, int instr)
    501501{
    502502        if (instr != 0 && instr != FTS_AGAIN && instr != FTS_FOLLOW &&
     
    510510
    511511FTSENT * FTSCALL
    512 fts_children(FTS *sp, int instr)
     512nt_fts_children(FTS *sp, int instr)
    513513{
    514514        FTSENT *p;
     
    584584
    585585void FTSCALL
    586 fts_set_clientptr(FTS *sp, void *clientptr)
     586nt_fts_set_clientptr(FTS *sp, void *clientptr)
    587587{
    588588
Note: See TracChangeset for help on using the changeset viewer.