Skip to content
Snippets Groups Projects
Commit 05e5ae10 authored by bigbes's avatar bigbes
Browse files

Example

parent 8a7f4379
No related branches found
No related tags found
No related merge requests found
......@@ -2,9 +2,7 @@
C
=====================================================================
:func:`tarantoolc:tnt_connect`
:func:`tarantoolc:tnt_connect()`
:c:func:`tarantoolc:tnt_connect`
Here follow two examples of using Tarantool's high-level C API.
......@@ -19,7 +17,7 @@ space :code:`examples` via the high-level C API.
#include <stdio.h>
#include <stdlib.h>
#include <tarantool/tarantool.h>
#include <tarantool/tnt_net.h>
#include <tarantool/tnt_opt.h>
......@@ -153,7 +151,7 @@ requests in the box library.
In this program, the choice is to do an INSERT request, so
the program passes the ``tnt_stream`` that was used for connection
(:code:`tnt`) and the stream that was set up with :func:`tnt_object_format`
(:code:`tnt`) and the stream that was set up with :c:func:`tarantoolc:tnt_object_format`
(:code:`tuple`).
Function description:
......@@ -191,7 +189,7 @@ Function description:
void tnt_reply_free(struct tnt_reply \*r)
**TEARDOWN:** When a session ends, the connection that was made with
:func:`tnt_connect()` should be closed, and the objects that were made in the setup
:c:func:`tarantoolc:tnt_connect()` should be closed, and the objects that were made in the setup
should be destroyed.
.. code-block:: c
......
......@@ -84,13 +84,13 @@ rst_prolog = """
.. role:: codebolditalic
:class: ccodebi
.. role:: codegreen
:class: ccodegreen
.. role:: codered
:class: ccodered
.. role:: codeblue
:class: ccodeblue
......@@ -104,17 +104,8 @@ rst_epilog = """
<br />
"""
# def setup(sphinx):
# sys.path.insert(0, os.path.abspath('./ext'))
# from LuaLexer import LuaLexer
# sphinx.add_lexer("lua_tarantool", LuaLexer())
# from TarantoolSessionLexer import TarantoolSessionLexer
# sphinx.add_lexer("tarantoolsession", TarantoolSessionLexer())
# from TapLexer import TAPLexer
# sphinx.add_lexer('tap', TAPLexer())
intersphinx_mapping = {
'tarantoolc': ('http://tarantool.github.io/tarantool-c/', None)
'tarantoolc': ('http://tarantool.github.io/tarantool-c/', None)
}
intersphinx_cache_limit = 0
\ No newline at end of file
intersphinx_cache_limit = 0
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment