~avsej/libmemcached/touch-command

« back to all changes in this revision

Viewing changes to docs/memcached_strerror.rst

  • Committer: Brian Aker
  • Date: 2011-06-24 20:09:30 UTC
  • mfrom: (929.1.155 libmemcached-build)
  • Revision ID: brian@tangent.org-20110624200930-m268yogmnpyzs3qj
Merge in trunk. Updates to manual/update to latest libtest.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
-----------
22
22
 
23
23
 
24
 
memcached_strerror() takes a \ ``memcached_return_t``\  value and returns a string
25
 
describing the error.
 
24
:c:func:`memcached_strerror()` takes a :c:type:`memcached_return_t` value and returns a string describing the error.
26
25
 
27
26
This string must not be modified by the application.
28
27
 
29
 
\ ``memcached_return_t``\  values are returned from nearly all libmemcached(3) functions.
 
28
:c:type:`memcached_return_t` values are returned from nearly all libmemcached(3) functions.
30
29
 
31
 
\ ``memcached_return_t``\  values are of an enum type so that you can set up responses
32
 
with switch/case and know that you are capturing all possible return values.
 
30
:c:type:`memcached_return_t` values are of an enum type so that you can set up responses with switch/case and know that you are capturing all possible return values.
33
31
 
34
32
 
35
33
------
37
35
------
38
36
 
39
37
 
40
 
memcached_strerror() returns a string describing a \ ``memcached_return_t``\  value.
 
38
:c:func:`memcached_strerror()` returns a string describing a :c:type:`memcached_return_t` value.
41
39
 
42
40
 
43
41
----
55
53
--------
56
54
 
57
55
 
58
 
memcached(1) libmemcached(3)
 
56
:manpage:`memcached(1)` :manpage:`libmemcached(3)`
59
57