Changeset 0ffbed9 in mainline for uspace/lib/posix/ctype.h


Ignore:
Timestamp:
2011-06-19T17:49:29Z (13 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
5974661
Parents:
f48b637 (diff), 32fb6944 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge libposix.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/posix/ctype.h

    rf48b637 r0ffbed9  
    11/*
    22 * Copyright (c) 2011 Jiri Zarevucky
     3 * Copyright (c) 2011 Petr Koupy
    34 * All rights reserved.
    45 *
     
    2728 */
    2829
     30/** @addtogroup libposix
     31 * @{
     32 */
     33/** @file
     34 */
     35
    2936#ifndef POSIX_CTYPE_H_
    3037#define POSIX_CTYPE_H_
     
    3239#include "libc/ctype.h"
    3340
    34 extern int isxdigit(int ch);
     41/* Classification of Characters */
     42extern int posix_isxdigit(int ch);
     43
     44#ifndef LIBPOSIX_INTERNAL
     45        #define isxdigit posix_isxdigit
     46#endif
    3547
    3648#endif /* POSIX_CTYPE_H_ */
    3749
     50/** @}
     51 */
Note: See TracChangeset for help on using the changeset viewer.