diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2013-02-09 21:44:11 +0100 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2013-02-09 22:11:28 +0100 |
commit | 57790bc8c558ccf2e57b3d973c043088232628c7 (patch) | |
tree | 274f3b0643fcf43b1c4b00469816be7c2c41bbba /util.c | |
parent | 31e615a50b34f67bdf5562ad887415b2ec8796c8 (diff) | |
download | libsigrokdecode-57790bc8c558ccf2e57b3d973c043088232628c7.tar.gz libsigrokdecode-57790bc8c558ccf2e57b3d973c043088232628c7.zip |
Doxygen: Mark private functions/variables properly.
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -32,6 +32,8 @@ * * @return SRD_OK upon success, a (negative) error code otherwise. * The 'outstr' argument points to a malloc()ed string upon success. + * + * @private */ SRD_PRIV int py_attr_as_str(const PyObject *py_obj, const char *attr, char **outstr) @@ -73,6 +75,8 @@ SRD_PRIV int py_attr_as_str(const PyObject *py_obj, const char *attr, * * @return SRD_OK upon success, a (negative) error code otherwise. * The 'outstr' argument points to a malloc()ed string upon success. + * + * @private */ SRD_PRIV int py_dictitem_as_str(const PyObject *py_obj, const char *key, char **outstr) @@ -111,6 +115,8 @@ SRD_PRIV int py_dictitem_as_str(const PyObject *py_obj, const char *key, * * @return SRD_OK upon success, a (negative) error code otherwise. * The 'outstr' argument points to a malloc()ed string upon success. + * + * @private */ SRD_PRIV int py_str_as_str(const PyObject *py_str, char **outstr) { @@ -165,6 +171,8 @@ err_out: * * @return SRD_OK upon success, a (negative) error code otherwise. * The 'outstr' argument points to a g_malloc()ed char** upon success. + * + * @private */ SRD_PRIV int py_strlist_to_char(const PyObject *py_strlist, char ***outstr) { |