Changeset 1064 for library/bdm/dirent.h

Show
Ignore:
Timestamp:
06/09/10 14:00:40 (14 years ago)
Author:
mido
Message:

astyle applied all over the library

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • library/bdm/dirent.h

    r706 r1064  
    1616#endif 
    1717 
    18         //!DIR 
    19         typedef struct DIR DIR; 
     18    //!DIR 
     19    typedef struct DIR DIR; 
    2020 
    21         //! dirent 
    22         struct dirent { 
    23                 char *d_name; 
    24         }; 
     21    //! dirent 
     22    struct dirent { 
     23        char *d_name; 
     24    }; 
    2525 
    26         //! Unix opendir function 
    27         DIR           *opendir ( const char * ); 
    28         //! Unix closedir function 
    29         int           closedir ( DIR * ); 
    30         //! Unix readdir function 
    31         struct dirent *readdir ( DIR * ); 
    32         //! Unix rewinddir function 
    33         void          rewinddir ( DIR * ); 
     26    //! Unix opendir function 
     27    DIR           *opendir ( const char * ); 
     28    //! Unix closedir function 
     29    int           closedir ( DIR * ); 
     30    //! Unix readdir function 
     31    struct dirent *readdir ( DIR * ); 
     32    //! Unix rewinddir function 
     33    void          rewinddir ( DIR * ); 
    3434 
    35         /* 
     35    /* 
    3636 
    37             Copyright Kevlin Henney, 1997, 2003. All rights reserved. 
     37        Copyright Kevlin Henney, 1997, 2003. All rights reserved. 
    3838 
    39             Permission to use, copy, modify, and distribute this software and its 
    40             documentation for any purpose is hereby granted without fee, provided 
    41             that this copyright and permissions notice appear in all copies and 
    42             derivatives. 
     39        Permission to use, copy, modify, and distribute this software and its 
     40        documentation for any purpose is hereby granted without fee, provided 
     41        that this copyright and permissions notice appear in all copies and 
     42        derivatives. 
    4343 
    44             This software is supplied "as is" without express or implied warranty. 
     44        This software is supplied "as is" without express or implied warranty. 
    4545 
    46             But that said, if there are any problems please get in touch. 
     46        But that said, if there are any problems please get in touch. 
    4747 
    48         */ 
     48    */ 
    4949 
    5050#ifdef __cplusplus