1
0
mirror of https://github.com/lammertb/libhttp.git synced 2025-08-09 03:22:45 +03:00

Fixed internal doc links

This commit is contained in:
Lammert Bies
2016-12-19 20:26:11 +01:00
parent 554f838aa0
commit 555770cd9e
3 changed files with 4 additions and 4 deletions

View File

@@ -106,8 +106,8 @@ LibHTTP is often used as HTTP and HTTPS library inside a larger application. A
* [`httplib_pthread_cond_signal( cv );`](api/httplib_pthread_cond_signal.md)
* [`httplib_pthread_cond_timedwait( cv, mutex, abstime );`](api/httplib_pthread_cond_timedwait.md)
* [`httplib_pthread_cond_wait( cv, mutex );`](api/httplib_pthread_cond_wait.md)
* [`httplib_pthread_getspecific( key );`](api/httplib_getspecific.md)
* [`httplib_pthread_key_create( key, destructor );`](api/httplib_key_create.md)
* [`httplib_pthread_getspecific( key );`](api/httplib_pthread_getspecific.md)
* [`httplib_pthread_key_create( key, destructor );`](api/httplib_pthread_key_create.md)
* [`httplib_pthread_key_delete( key );`](api/httplib_pthread_key_delete.md)
* [`httplib_pthread_mutex_destroy( mutex );`](api/httplib_pthread_mutex_destroy.md)
* [`httplib_pthread_mutex_init( mutex, attr );`](api/httplib_pthread_mutex_init.md)

View File

@@ -12,7 +12,7 @@
| Type | Description |
| :--- | :--- |
|`void *`|Pointer to the memory area or NULL of no area could be found|
|`void *`|Pointer to the memory area or NULL if no area could be found|
### Description

View File

@@ -7,7 +7,7 @@
| Parameter | Type | Description |
| :--- | :--- | :--- |
|**`key`**|`pthread_key_t`|The key of the variable to set|
|**`destructor`**|`void (*destructor)(void *)`|Pointer to destructor function to be called when the key is destroyed|
|**`destructor`**|`void (*destructor)(void *)`|Pointer to a destructor function to be called when the key is destroyed, or NULL if no destructor functionality is needed|
### Return Value