Changeset aadf01e in mainline for uspace/srv/net/include/netdb.h


Ignore:
Timestamp:
2010-03-07T15:13:28Z (14 years ago)
Author:
Lukas Mejdrech <lukasmejdrech@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
936835e
Parents:
aa85487
Message:

Coding style (no functional change)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/net/include/netdb.h

    raa85487 raadf01e  
    4646        /** Official host name.
    4747         */
    48         char *  h_name;
     48        char * h_name;
    4949        /** Alias list.
    5050         */
     
    5252        /** Host address type.
    5353         */
    54         int             h_addrtype;
     54        int h_addrtype;
    5555        /** Address length.
    5656         */
    57         int             h_length;
     57        int h_length;
    5858        /** List of addresses from name server.
    5959         */
     
    6161        /** Address, for backward compatiblity.
    6262         */
    63 #define h_addr  h_addr_list[ 0 ]
     63#define h_addr  h_addr_list[0]
    6464};
    6565
     
    9696 *  @returns Host entry information.
    9797 */
    98 //struct hostent *      gethostbyaddr( const void * address, int len, int type );
     98//struct hostent *      gethostbyaddr(const void * address, int len, int type);
    9999
    100100/** Returns host entry by the host name.
     
    102102 *  @returns Host entry information.
    103103 */
    104 //struct hostent *      gethostbyname( const char * name );
     104//struct hostent *      gethostbyname(const char * name);
    105105
    106106#endif
Note: See TracChangeset for help on using the changeset viewer.