Ignore:
File:
1 edited

Legend:

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

    rbf31e3f r6921178  
    112112 * @return Non-zero if character match the definition, zero otherwise.
    113113 */
    114 int posix_isascii(int c)
     114extern int posix_isascii(int c)
    115115{
    116116        return c >= 0 && c < 128;
     
    123123 * @return Coverted character.
    124124 */
    125 int posix_toascii(int c)
     125extern int posix_toascii(int c)
    126126{
    127127        return c & 0x7F;
Note: See TracChangeset for help on using the changeset viewer.