Ignore:
Timestamp:
2019-02-05T18:26:05Z (6 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Children:
1d2f85e
Parents:
d066259
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2019-02-05 16:16:55)
git-committer:
Jiří Zárevúcky <zarevucky.jiri@…> (2019-02-05 18:26:05)
Message:

Use clearer naming for string length functions

This and the following commit change the names of functions, as well as
their documentation, to use unambiguous terms "bytes" and "code points"
instead of ambiguous terms "size", "length", and "characters".

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/drv/generic/remote_ieee80211.c

    rd066259 r08e103d4  
    138138
    139139        errno_t rc = async_data_write_start(exch, ssid_start,
    140             str_size(ssid_start) + 1);
     140            str_bytes(ssid_start) + 1);
    141141        if (rc != EOK) {
    142142                async_exchange_end(exch);
     
    153153                password = (char *) "";
    154154
    155         rc = async_data_write_start(exch, password, str_size(password) + 1);
     155        rc = async_data_write_start(exch, password, str_bytes(password) + 1);
    156156        if (rc != EOK) {
    157157                async_exchange_end(exch);
Note: See TracChangeset for help on using the changeset viewer.