Changeset ff3b3197 in mainline for generic/include/func.h


Ignore:
Timestamp:
2005-11-25T22:58:38Z (20 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f4338d2
Parents:
78c32b4
Message:

Implement basic kernel console command recognition.
Commands without arguments are now recognized.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • generic/include/func.h

    r78c32b4 rff3b3197  
    3131
    3232#include <arch/types.h>
     33#include <typedefs.h>
    3334
    3435extern __u32 haltstate;
     
    3637extern void halt(void);
    3738
    38 extern int strcmp(const char *src, const char *dst);
     39extern size_t strlen(const char *str);
     40extern int strcmp(const char *src, const char *dst, size_t len);
    3941
    4042#endif
Note: See TracChangeset for help on using the changeset viewer.