Commit 9f0a0bbd authored by John Tsichritzis's avatar John Tsichritzis
Browse files

Fix RST rendering problem



Change-Id: Ic5aab23b549d0bf8e0f7053b46fd59243214aac1
Signed-off-by: default avatarJohn Tsichritzis <john.tsichritzis@arm.com>
parent 2cbeee4d
...@@ -272,15 +272,15 @@ used (Banned) or are discouraged from use and must be used with care (Caution). ...@@ -272,15 +272,15 @@ used (Banned) or are discouraged from use and must be used with care (Caution).
+------------------------+-----------+--------------------------------------+ +------------------------+-----------+--------------------------------------+
| libc function | Status | Comments | | libc function | Status | Comments |
+========================+===========+======================================+ +========================+===========+======================================+
| ``strcpy, wcscpy`` | Banned | use strlcpy instead | | ``strcpy, wcscpy``, | Banned | use strlcpy instead |
| ``strncpy`` | | | | ``strncpy`` | | |
+------------------------+-----------+--------------------------------------+ +------------------------+-----------+--------------------------------------+
| ``strcat, wcscat`` | Banned | use strlcat instead | | ``strcat, wcscat``, | Banned | use strlcat instead |
| ``strncat`` | | | | ``strncat`` | | |
+----------------------- +-----------+--------------------------------------+ +------------------------+-----------+--------------------------------------+
| ``sprintf, vsprintf`` | Banned | use snprintf, vsnprintf | | ``sprintf, vsprintf`` | Banned | use snprintf, vsnprintf |
| | | instead | | | | instead |
+---------------------- -+-----------+--------------------------------------+ +------------------------+-----------+--------------------------------------+
| ``snprintf`` | Caution | ensure result fits in buffer | | ``snprintf`` | Caution | ensure result fits in buffer |
| | | i.e : snprintf(buf,size...) < size | | | | i.e : snprintf(buf,size...) < size |
+------------------------+-----------+--------------------------------------+ +------------------------+-----------+--------------------------------------+
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment