summaryrefslogtreecommitdiff
path: root/docs/process
diff options
context:
space:
mode:
authorSandrine Bailleux <sandrine.bailleux@arm.com>2019-07-12 07:35:28 +0000
committerTrustedFirmware Code Review <review@review.trustedfirmware.org>2019-07-12 07:35:28 +0000
commit2d78a1c6a3bdaf1c976d4795662ab84d76999417 (patch)
treebae3ace89a97487c16d4fea407f59b090195a1ab /docs/process
parent274e8714ed32c2c69e7173eafa7c050fe67258b0 (diff)
parent9f0a0bbd1c1544a5a1849ba871f1a50b16ef4f79 (diff)
Merge "Fix RST rendering problem" into integration
Diffstat (limited to 'docs/process')
-rw-r--r--docs/process/coding-guidelines.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/process/coding-guidelines.rst b/docs/process/coding-guidelines.rst
index 093d66be..a53da77b 100644
--- a/docs/process/coding-guidelines.rst
+++ b/docs/process/coding-guidelines.rst
@@ -272,15 +272,15 @@ used (Banned) or are discouraged from use and must be used with care (Caution).
+------------------------+-----------+--------------------------------------+
| libc function | Status | Comments |
+========================+===========+======================================+
-| ``strcpy, wcscpy`` | Banned | use strlcpy instead |
+| ``strcpy, wcscpy``, | Banned | use strlcpy instead |
| ``strncpy`` | | |
+------------------------+-----------+--------------------------------------+
-| ``strcat, wcscat`` | Banned | use strlcat instead |
+| ``strcat, wcscat``, | Banned | use strlcat instead |
| ``strncat`` | | |
-+----------------------- +-----------+--------------------------------------+
++------------------------+-----------+--------------------------------------+
| ``sprintf, vsprintf`` | Banned | use snprintf, vsnprintf |
| | | instead |
-+---------------------- -+-----------+--------------------------------------+
++------------------------+-----------+--------------------------------------+
| ``snprintf`` | Caution | ensure result fits in buffer |
| | | i.e : snprintf(buf,size...) < size |
+------------------------+-----------+--------------------------------------+