diff --git a/serialport.c b/serialport.c index 43415a0..60a1a75 100644 --- a/serialport.c +++ b/serialport.c @@ -68,6 +68,11 @@ fail: return NULL; } +/** + * List the serial ports available on the system. + * + * @return A null-terminated array of port name strings. + */ char **sp_list_ports(void) { char **list = NULL; @@ -197,6 +202,9 @@ out: #endif } +/** + * Free a port list returned by sp_list_ports. + */ void sp_free_port_list(char **list) { unsigned int i;