Subversion Repositories HelenOS-historic

Rev

Rev 62 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 62 Rev 72
Line 59... Line 59...
59
 * @param dst Second string to compare.
59
 * @param dst Second string to compare.
60
 *
60
 *
61
 * @return 0 if the strings are equal, 1 otherwise.
61
 * @return 0 if the strings are equal, 1 otherwise.
62
 *
62
 *
63
 */
63
 */
64
int strcmp(char *src, char *dst)
64
int strcmp(const char *src, const char *dst)
65
{
65
{
66
    int i;
66
    int i;
67
   
67
   
68
    i = 0;
68
    i = 0;
69
    while (src[i] == dst[i]) {
69
    while (src[i] == dst[i]) {