Changeset 5cd136ab in mainline for uspace/srv/devman/util.c


Ignore:
Timestamp:
2010-04-02T13:37:58Z (15 years ago)
Author:
Lenka Trochtova <trochtova.lenka@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
9a66bc2e
Parents:
57937dd
Message:

device interfaces and driver cooperation - parts of code

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/devman/util.c

    r57937dd r5cd136ab  
    6161        return res;
    6262}
     63
     64const char * get_path_elem_end(const char *path)
     65{
     66        while (0 != *path && '/' != *path) {
     67                path++;
     68        }
     69        return path;
     70}
Note: See TracChangeset for help on using the changeset viewer.