doc: fix doxygen 'utils' group closing brace

osmo_strlcpy() was excluded from the group because the closing brace was above
it.

Change-Id: I6701261f5854342ac4cd4f2da62e49eb40362938
This commit is contained in:
Neels Hofmeyr 2017-01-13 14:16:02 +01:00
parent 6e8c172476
commit 0aeda1b17f
1 changed files with 2 additions and 1 deletions

View File

@ -338,7 +338,6 @@ uint8_t *osmo_encode_big_endian(uint64_t value, size_t data_len)
osmo_store64be_ext(value, buf, data_len);
return buf;
}
/*! @} */
/*! \brief Copy a C-string into a sized buffer
* \param[in] src source string
@ -361,3 +360,5 @@ size_t osmo_strlcpy(char *dst, const char *src, size_t siz)
}
return ret;
}
/*! @} */