Changeset aed3e6a in mainline for uspace/srv/devman/util.c


Ignore:
Timestamp:
2016-12-11T15:48:12Z (8 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
df01d303
Parents:
e53794c
Message:

Allow # comments in match files

File:
1 edited

Legend:

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

    re53794c raed3e6a  
    7373}
    7474
     75void skip_line(char **buf)
     76{
     77        while (**buf && **buf != '\n')
     78                (*buf)++;
     79}
     80
    7581size_t get_nonspace_len(const char *str)
    7682{
Note: See TracChangeset for help on using the changeset viewer.