This commit is contained in:
2025-01-08 15:16:17 +01:00
parent 6164c1cd5e
commit 6c6b856e6c
20 changed files with 774 additions and 745 deletions

20
maps/custom_1.txt Normal file
View File

@@ -0,0 +1,20 @@
####################
#P #
# #
# #
# #
# C #
# #
# I #
# #
# #
# #
# C #
# #
# #
# #
# #
# #
# #
# #
####################

View File

@@ -1,4 +1,4 @@
# Doxyfile 1.12.0 # Doxyfile 1.13.1
# This file describes the settings to be used by the documentation system # This file describes the settings to be used by the documentation system
# Doxygen (www.doxygen.org) for a project. # Doxygen (www.doxygen.org) for a project.
@@ -51,7 +51,7 @@ PROJECT_NAME = Sokoban
PROJECT_NUMBER = PROJECT_NUMBER =
# Using the PROJECT_BRIEF tag one can provide an optional one line description # Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a # for a project that appears at the top of each page and should give viewers a
# quick idea about the purpose of the project. Keep the description short. # quick idea about the purpose of the project. Keep the description short.
PROJECT_BRIEF = PROJECT_BRIEF =
@@ -80,7 +80,7 @@ OUTPUT_DIRECTORY = .
# sub-directories (in 2 levels) under the output directory of each output format # sub-directories (in 2 levels) under the output directory of each output format
# and will distribute the generated files over these directories. Enabling this # and will distribute the generated files over these directories. Enabling this
# option can be useful when feeding Doxygen a huge amount of source files, where # option can be useful when feeding Doxygen a huge amount of source files, where
# putting all generated files in the same directory would otherwise causes # putting all generated files in the same directory would otherwise cause
# performance problems for the file system. Adapt CREATE_SUBDIRS_LEVEL to # performance problems for the file system. Adapt CREATE_SUBDIRS_LEVEL to
# control the number of sub-directories. # control the number of sub-directories.
# The default value is: NO. # The default value is: NO.
@@ -202,17 +202,17 @@ STRIP_FROM_PATH =
STRIP_FROM_INC_PATH = STRIP_FROM_INC_PATH =
# If the SHORT_NAMES tag is set to YES, Doxygen will generate much shorter (but # If the SHORT_NAMES tag is set to YES, Doxygen will generate much shorter (but
# less readable) file names. This can be useful is your file systems doesn't # less readable) file names. This can be useful if your file system doesn't
# support long names like on DOS, Mac, or CD-ROM. # support long names like on DOS, Mac, or CD-ROM.
# The default value is: NO. # The default value is: NO.
SHORT_NAMES = NO SHORT_NAMES = NO
# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen will interpret the # If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen will interpret the
# first line (until the first dot) of a Javadoc-style comment as the brief # first line (until the first dot, question mark or exclamation mark) of a
# description. If set to NO, the Javadoc-style will behave just like regular Qt- # Javadoc-style comment as the brief description. If set to NO, the Javadoc-
# style comments (thus requiring an explicit @brief command for a brief # style will behave just like regular Qt-style comments (thus requiring an
# description.) # explicit @brief command for a brief description.)
# The default value is: NO. # The default value is: NO.
JAVADOC_AUTOBRIEF = NO JAVADOC_AUTOBRIEF = NO
@@ -228,9 +228,10 @@ JAVADOC_AUTOBRIEF = NO
JAVADOC_BANNER = NO JAVADOC_BANNER = NO
# If the QT_AUTOBRIEF tag is set to YES then Doxygen will interpret the first # If the QT_AUTOBRIEF tag is set to YES then Doxygen will interpret the first
# line (until the first dot) of a Qt-style comment as the brief description. If # line (until the first dot, question mark or exclamation mark) of a Qt-style
# set to NO, the Qt-style will behave just like regular Qt-style comments (thus # comment as the brief description. If set to NO, the Qt-style will behave just
# requiring an explicit \brief command for a brief description.) # like regular Qt-style comments (thus requiring an explicit \brief command for
# a brief description.)
# The default value is: NO. # The default value is: NO.
QT_AUTOBRIEF = NO QT_AUTOBRIEF = NO
@@ -383,11 +384,20 @@ MARKDOWN_ID_STYLE = DOXYGEN
# When enabled Doxygen tries to link words that correspond to documented # When enabled Doxygen tries to link words that correspond to documented
# classes, or namespaces to their corresponding documentation. Such a link can # classes, or namespaces to their corresponding documentation. Such a link can
# be prevented in individual cases by putting a % sign in front of the word or # be prevented in individual cases by putting a % sign in front of the word or
# globally by setting AUTOLINK_SUPPORT to NO. # globally by setting AUTOLINK_SUPPORT to NO. Words listed in the
# AUTOLINK_IGNORE_WORDS tag are excluded from automatic linking.
# The default value is: YES. # The default value is: YES.
AUTOLINK_SUPPORT = YES AUTOLINK_SUPPORT = YES
# This tag specifies a list of words that, when matching the start of a word in
# the documentation, will suppress auto links generation, if it is enabled via
# AUTOLINK_SUPPORT. This list does not affect affect links explicitly created
# using \# or the \link or commands.
# This tag requires that the tag AUTOLINK_SUPPORT is set to YES.
AUTOLINK_IGNORE_WORDS =
# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want # If you use STL classes (i.e. std::string, std::vector, etc.) but do not want
# to include (a tag file for) the STL sources as input, then you should set this # to include (a tag file for) the STL sources as input, then you should set this
# tag to YES in order to let Doxygen match functions declarations and # tag to YES in order to let Doxygen match functions declarations and
@@ -599,6 +609,14 @@ HIDE_UNDOC_MEMBERS = NO
HIDE_UNDOC_CLASSES = NO HIDE_UNDOC_CLASSES = NO
# If the HIDE_UNDOC_NAMESPACES tag is set to YES, Doxygen will hide all
# undocumented namespaces that are normally visible in the namespace hierarchy.
# If set to NO, these namespaces will be included in the various overviews. This
# option has no effect if EXTRACT_ALL is enabled.
# The default value is: YES.
HIDE_UNDOC_NAMESPACES = YES
# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all friend # If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all friend
# declarations. If set to NO, these declarations will be included in the # declarations. If set to NO, these declarations will be included in the
# documentation. # documentation.
@@ -909,6 +927,14 @@ WARN_NO_PARAMDOC = NO
WARN_IF_UNDOC_ENUM_VAL = NO WARN_IF_UNDOC_ENUM_VAL = NO
# If WARN_LAYOUT_FILE option is set to YES, Doxygen will warn about issues found
# while parsing the user defined layout file, such as missing or wrong elements.
# See also LAYOUT_FILE for details. If set to NO, problems with the layout file
# will be suppressed.
# The default value is: YES.
WARN_LAYOUT_FILE = YES
# If the WARN_AS_ERROR tag is set to YES then Doxygen will immediately stop when # If the WARN_AS_ERROR tag is set to YES then Doxygen will immediately stop when
# a warning is encountered. If the WARN_AS_ERROR tag is set to FAIL_ON_WARNINGS # a warning is encountered. If the WARN_AS_ERROR tag is set to FAIL_ON_WARNINGS
# then Doxygen will continue running as if WARN_AS_ERROR tag is set to NO, but # then Doxygen will continue running as if WARN_AS_ERROR tag is set to NO, but
@@ -966,7 +992,8 @@ WARN_LOGFILE =
# Note: If this tag is empty the current directory is searched. # Note: If this tag is empty the current directory is searched.
INPUT = ../include \ INPUT = ../include \
../script ../script \
main_page.md
# This tag can be used to specify the character encoding of the source files # This tag can be used to specify the character encoding of the source files
# that Doxygen parses. Internally Doxygen uses the UTF-8 encoding. Doxygen uses # that Doxygen parses. Internally Doxygen uses the UTF-8 encoding. Doxygen uses
@@ -979,10 +1006,10 @@ INPUT = ../include \
INPUT_ENCODING = UTF-8 INPUT_ENCODING = UTF-8
# This tag can be used to specify the character encoding of the source files # This tag can be used to specify the character encoding of the source files
# that Doxygen parses The INPUT_FILE_ENCODING tag can be used to specify # that Doxygen parses. The INPUT_FILE_ENCODING tag can be used to specify
# character encoding on a per file pattern basis. Doxygen will compare the file # character encoding on a per file pattern basis. Doxygen will compare the file
# name with each pattern and apply the encoding instead of the default # name with each pattern and apply the encoding instead of the default
# INPUT_ENCODING) if there is a match. The character encodings are a list of the # INPUT_ENCODING if there is a match. The character encodings are a list of the
# form: pattern=encoding (like *.php=ISO-8859-1). # form: pattern=encoding (like *.php=ISO-8859-1).
# See also: INPUT_ENCODING for further information on supported encodings. # See also: INPUT_ENCODING for further information on supported encodings.
@@ -1182,7 +1209,16 @@ FILTER_SOURCE_PATTERNS =
# (index.html). This can be useful if you have a project on for instance GitHub # (index.html). This can be useful if you have a project on for instance GitHub
# and want to reuse the introduction page also for the Doxygen output. # and want to reuse the introduction page also for the Doxygen output.
USE_MDFILE_AS_MAINPAGE = USE_MDFILE_AS_MAINPAGE = main_page.md
# If the IMPLICIT_DIR_DOCS tag is set to YES, any README.md file found in sub-
# directories of the project's root, is used as the documentation for that sub-
# directory, except when the README.md starts with a \dir, \page or \mainpage
# command. If set to NO, the README.md file needs to start with an explicit \dir
# command in order to be used as directory documentation.
# The default value is: YES.
IMPLICIT_DIR_DOCS = YES
# The Fortran standard specifies that for fixed formatted Fortran code all # The Fortran standard specifies that for fixed formatted Fortran code all
# characters from position 72 are to be considered as comment. A common # characters from position 72 are to be considered as comment. A common
@@ -1596,9 +1632,9 @@ DOCSET_PUBLISHER_NAME = Publisher
# additional HTML index files: index.hhp, index.hhc, and index.hhk. The # additional HTML index files: index.hhp, index.hhc, and index.hhk. The
# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop # index.hhp is a project file that can be read by Microsoft's HTML Help Workshop
# on Windows. In the beginning of 2021 Microsoft took the original page, with # on Windows. In the beginning of 2021 Microsoft took the original page, with
# a.o. the download links, offline the HTML help workshop was already many years # a.o. the download links, offline (the HTML help workshop was already many
# in maintenance mode). You can download the HTML help workshop from the web # years in maintenance mode). You can download the HTML help workshop from the
# archives at Installation executable (see: # web archives at Installation executable (see:
# http://web.archive.org/web/20160201063255/http://download.microsoft.com/downlo # http://web.archive.org/web/20160201063255/http://download.microsoft.com/downlo
# ad/0/A/9/0A939EF6-E31C-430F-A3DF-DFAE7960D564/htmlhelp.exe). # ad/0/A/9/0A939EF6-E31C-430F-A3DF-DFAE7960D564/htmlhelp.exe).
# #
@@ -1757,7 +1793,7 @@ ECLIPSE_DOC_ID = org.doxygen.Project
# of each HTML page. A value of NO enables the index and the value YES disables # of each HTML page. A value of NO enables the index and the value YES disables
# it. Since the tabs in the index contain the same information as the navigation # it. Since the tabs in the index contain the same information as the navigation
# tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES. # tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES.
# The default value is: NO. # The default value is: YES.
# This tag requires that the tag GENERATE_HTML is set to YES. # This tag requires that the tag GENERATE_HTML is set to YES.
DISABLE_INDEX = NO DISABLE_INDEX = NO
@@ -1774,7 +1810,7 @@ DISABLE_INDEX = NO
# shows how to put an image at the root of the tree instead of the PROJECT_NAME. # shows how to put an image at the root of the tree instead of the PROJECT_NAME.
# Since the tree basically has the same information as the tab index, you could # Since the tree basically has the same information as the tab index, you could
# consider setting DISABLE_INDEX to YES when enabling this option. # consider setting DISABLE_INDEX to YES when enabling this option.
# The default value is: NO. # The default value is: YES.
# This tag requires that the tag GENERATE_HTML is set to YES. # This tag requires that the tag GENERATE_HTML is set to YES.
GENERATE_TREEVIEW = NO GENERATE_TREEVIEW = NO
@@ -2186,7 +2222,7 @@ LATEX_HIDE_INDICES = NO
# The LATEX_BIB_STYLE tag can be used to specify the style to use for the # The LATEX_BIB_STYLE tag can be used to specify the style to use for the
# bibliography, e.g. plainnat, or ieeetr. See # bibliography, e.g. plainnat, or ieeetr. See
# https://en.wikipedia.org/wiki/BibTeX and \cite for more info. # https://en.wikipedia.org/wiki/BibTeX and \cite for more info.
# The default value is: plain. # The default value is: plainnat.
# This tag requires that the tag GENERATE_LATEX is set to YES. # This tag requires that the tag GENERATE_LATEX is set to YES.
LATEX_BIB_STYLE = plain LATEX_BIB_STYLE = plain
@@ -2860,6 +2896,12 @@ PLANTUML_CFG_FILE =
PLANTUML_INCLUDE_PATH = PLANTUML_INCLUDE_PATH =
# The PLANTUMLFILE_DIRS tag can be used to specify one or more directories that
# contain PlantUml files that are included in the documentation (see the
# \plantumlfile command).
PLANTUMLFILE_DIRS =
# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of nodes # The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of nodes
# that will be shown in the graph. If the number of nodes in a graph becomes # that will be shown in the graph. If the number of nodes in a graph becomes
# larger than this value, Doxygen will truncate the graph, which is visualized # larger than this value, Doxygen will truncate the graph, which is visualized

View File

@@ -5,7 +5,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=11"/> <meta http-equiv="X-UA-Compatible" content="IE=11"/>
<meta name="generator" content="Doxygen 1.13.1"/> <meta name="generator" content="Doxygen 1.13.1"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/> <meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>Sokoban: Page principale</title> <title>Sokoban: Main Test</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/> <link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script> <script type="text/javascript" src="dynsections.js"></script>
@@ -84,10 +84,14 @@ $(function(){ initResizable(false); });
</div> </div>
</div> </div>
<div class="header"> <div><div class="header">
<div class="headertitle"><div class="title">Sokoban Documentation</div></div> <div class="headertitle"><div class="title">Main Test </div></div>
</div><!--header--> </div><!--header-->
<div class="contents"> <div class="contents">
<div class="textblock"><p><a class="anchor" id="md_main__page"></a></p>
<p>ewuewiewhf wef ewuewiewhf ewuewiewhfewf wefe:Lw</p>
<p>dewfewfewfew f ewuewiewhfewf fw ewuewiewhfewfewf f wf </p>
</div></div><!-- PageDoc -->
<a href="doxygen_crawl.html"></a> <a href="doxygen_crawl.html"></a>
</div><!-- contents --> </div><!-- contents -->
<!-- start footer part --> <!-- start footer part -->

View File

@@ -1,5 +1,6 @@
var searchData= var searchData=
[ [
['main_2ec_0',['main.c',['../main_8c.html',1,'']]], ['main_20test_0',['Main Test',['../index.html',1,'']]],
['move_1',['move',['../function_8c.html#a9c9b1fdde1684178393ffe6104ab615d',1,'function.c']]] ['main_2ec_1',['main.c',['../main_8c.html',1,'']]],
['move_2',['move',['../function_8c.html#a9c9b1fdde1684178393ffe6104ab615d',1,'function.c']]]
]; ];

View File

@@ -1,5 +1,6 @@
var searchData= var searchData=
[ [
['timetotext_0',['timeToText',['../function_8c.html#a51c9ba7a24383f1b20dcedfcb570aab5',1,'function.c']]], ['test_0',['Main Test',['../index.html',1,'']]],
['titlescreen_1',['titleScreen',['../function_8c.html#ad3517d7c8da5b33a96d376d7b07911c1',1,'function.c']]] ['timetotext_1',['timeToText',['../function_8c.html#a51c9ba7a24383f1b20dcedfcb570aab5',1,'function.c']]],
['titlescreen_2',['titleScreen',['../function_8c.html#ad3517d7c8da5b33a96d376d7b07911c1',1,'function.c']]]
]; ];

View File

@@ -0,0 +1,4 @@
var searchData=
[
['main_20test_0',['Main Test',['../index.html',1,'']]]
];

View File

@@ -0,0 +1,4 @@
var searchData=
[
['test_0',['Main Test',['../index.html',1,'']]]
];

View File

@@ -3,7 +3,8 @@ var indexSectionsWithContent =
0: "bcdefgilmnprstvw", 0: "bcdefgilmnprstvw",
1: "esv", 1: "esv",
2: "dfmr", 2: "dfmr",
3: "bcdfgilmnpstw" 3: "bcdfgilmnpstw",
4: "mt"
}; };
var indexSectionNames = var indexSectionNames =
@@ -11,7 +12,8 @@ var indexSectionNames =
0: "all", 0: "all",
1: "classes", 1: "classes",
2: "files", 2: "files",
3: "functions" 3: "functions",
4: "pages"
}; };
var indexSectionLabels = var indexSectionLabels =
@@ -19,6 +21,7 @@ var indexSectionLabels =
0: "Tout", 0: "Tout",
1: "Structures de données", 1: "Structures de données",
2: "Fichiers", 2: "Fichiers",
3: "Fonctions" 3: "Fonctions",
4: "Pages"
}; };

8
rapport/latex/index.tex Normal file
View File

@@ -0,0 +1,8 @@
\chapter{Main Test}
\label{index}\index{Main Test@{Main Test}}
\label{index_md_main__page}%
ewuewiewhf wef ewuewiewhf ewuewiewhfewf wefe\+:Lw
dewfewfewfew f ewuewiewhfewf fw ewuewiewhfewfewf f wf

View File

@@ -1,152 +1,166 @@
\relax \relax
\providecommand\babel@aux[2]{} \providecommand\babel@aux[2]{}
\@nameuse{bbl@beforestart} \@nameuse{bbl@beforestart}
\catcode `:\active
\catcode `;\active
\catcode `!\active
\catcode `?\active
\providecommand \oddpage@label [2]{} \providecommand \oddpage@label [2]{}
\@writefile{toc}{\@ifundefined {etoctocstyle}{\let \etoc@startlocaltoc \@gobble \let \etoc@settocdepth \@gobble \let \etoc@depthtag \@gobble \let \etoc@setlocaltop \@gobble }{}} \@writefile{toc}{\@ifundefined {etoctocstyle}{\let \etoc@startlocaltoc \@gobble \let \etoc@settocdepth \@gobble \let \etoc@depthtag \@gobble \let \etoc@setlocaltop \@gobble }{}}
\babel@aux{french}{} \babel@aux{nil}{}
\@writefile{toc}{\contentsline {chapter}{\numberline {1}Index des structures de données}{1}{}\protected@file@percent } \@writefile{toc}{\contentsline {chapter}{\numberline {1}Main Test}{1}{}\protected@file@percent }
\@writefile{lof}{\addvspace {10\p@ }} \@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }} \@writefile{lot}{\addvspace {10\p@ }}
\@writefile{toc}{\contentsline {section}{\numberline {1.1}Structures de données}{1}{}\protected@file@percent } \newlabel{index}{{1}{1}{}{}{}}
\@writefile{toc}{\contentsline {chapter}{\numberline {2}Index des fichiers}{3}{}\protected@file@percent } \newlabel{index_md_main__page}{{1}{1}{}{}{}}
\@writefile{toc}{\contentsline {chapter}{\numberline {2}Index des structures de données}{3}{}\protected@file@percent }
\@writefile{lof}{\addvspace {10\p@ }} \@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }} \@writefile{lot}{\addvspace {10\p@ }}
\@writefile{toc}{\contentsline {section}{\numberline {2.1}Liste des fichiers}{3}{}\protected@file@percent } \@writefile{toc}{\contentsline {section}{\numberline {2.1}Structures de données}{3}{}\protected@file@percent }
\@writefile{toc}{\contentsline {chapter}{\numberline {3}Documentation des structures de données}{5}{}\protected@file@percent } \@writefile{toc}{\contentsline {chapter}{\numberline {3}Index des fichiers}{5}{}\protected@file@percent }
\@writefile{lof}{\addvspace {10\p@ }} \@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }} \@writefile{lot}{\addvspace {10\p@ }}
\@writefile{toc}{\contentsline {section}{\numberline {3.1}Référence de la structure essential\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}\_\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}sdl}{5}{}\protected@file@percent } \@writefile{toc}{\contentsline {section}{\numberline {3.1}Liste des fichiers}{5}{}\protected@file@percent }
\newlabel{structessential__sdl}{{3.1}{5}{}{}{}} \@writefile{toc}{\contentsline {chapter}{\numberline {4}Documentation des structures de données}{7}{}\protected@file@percent }
\newlabel{structessential__sdl_aaa8e409e04dcf575ef63fd5fb3db06f9}{{3.1}{5}{}{}{}}
\newlabel{structessential__sdl_a966da7a60c4ea3ba301e26ccc5efe452}{{3.1}{5}{}{}{}}
\newlabel{structessential__sdl_a1fc16d5a293af23f808d39c99852502b}{{3.1}{5}{}{}{}}
\newlabel{structessential__sdl_a9c66015289031d34002024c46e89205e}{{3.1}{5}{}{}{}}
\newlabel{structessential__sdl_a34f11ece16600fa6c518deae6321c324}{{3.1}{5}{}{}{}}
\@writefile{toc}{\contentsline {section}{\numberline {3.2}Référence de la structure Score}{5}{}\protected@file@percent }
\newlabel{structScore}{{3.2}{5}{}{}{}}
\newlabel{structScore_afa69ea5c1e63b6c39dbfabd46b3cd326}{{3.2}{5}{}{}{}}
\newlabel{structScore_aa01b88964a111cdf0f5c4f57c6b99604}{{3.2}{5}{}{}{}}
\newlabel{structScore_a574993641041cfcbd6b58f376da63676}{{3.2}{5}{}{}{}}
\newlabel{structScore_a9202e14285ba5c068d496c798825c7fb}{{3.2}{5}{}{}{}}
\@writefile{toc}{\contentsline {section}{\numberline {3.3}Référence de la structure Vecteur}{6}{}\protected@file@percent }
\newlabel{structVecteur}{{3.3}{6}{}{}{}}
\newlabel{structVecteur_a6150e0515f7202e2fb518f7206ed97dc}{{3.3}{6}{}{}{}}
\newlabel{structVecteur_a0a2f84ed7838f07779ae24c5a9086d33}{{3.3}{6}{}{}{}}
\@writefile{toc}{\contentsline {chapter}{\numberline {4}Documentation des fichiers}{7}{}\protected@file@percent }
\@writefile{lof}{\addvspace {10\p@ }} \@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }} \@writefile{lot}{\addvspace {10\p@ }}
\@writefile{toc}{\contentsline {section}{\numberline {4.1}display.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}h}{7}{}\protected@file@percent } \@writefile{toc}{\contentsline {section}{\numberline {4.1}Référence de la structure essential\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}\_\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}sdl}{7}{}\protected@file@percent }
\newlabel{display_8h_source}{{4.1}{7}{}{}{}} \newlabel{structessential__sdl}{{4.1}{7}{}{}{}}
\@writefile{toc}{\contentsline {section}{\numberline {4.2}function.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}h}{7}{}\protected@file@percent } \newlabel{structessential__sdl_aaa8e409e04dcf575ef63fd5fb3db06f9}{{4.1}{7}{}{}{}}
\newlabel{function_8h_source}{{4.2}{7}{}{}{}} \newlabel{structessential__sdl_a966da7a60c4ea3ba301e26ccc5efe452}{{4.1}{7}{}{}{}}
\@writefile{toc}{\contentsline {section}{\numberline {4.3}read.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}h}{8}{}\protected@file@percent } \newlabel{structessential__sdl_a1fc16d5a293af23f808d39c99852502b}{{4.1}{7}{}{}{}}
\newlabel{read_8h_source}{{4.3}{8}{}{}{}} \newlabel{structessential__sdl_a9c66015289031d34002024c46e89205e}{{4.1}{7}{}{}{}}
\@writefile{toc}{\contentsline {section}{\numberline {4.4}Référence du fichier display.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}c}{8}{}\protected@file@percent } \newlabel{structessential__sdl_a34f11ece16600fa6c518deae6321c324}{{4.1}{7}{}{}{}}
\newlabel{display_8c}{{4.4}{8}{}{}{}} \@writefile{toc}{\contentsline {section}{\numberline {4.2}Référence de la structure Score}{7}{}\protected@file@percent }
\newlabel{structScore}{{4.2}{7}{}{}{}}
\newlabel{structScore_afa69ea5c1e63b6c39dbfabd46b3cd326}{{4.2}{7}{}{}{}}
\newlabel{structScore_aa01b88964a111cdf0f5c4f57c6b99604}{{4.2}{7}{}{}{}}
\newlabel{structScore_a574993641041cfcbd6b58f376da63676}{{4.2}{7}{}{}{}}
\newlabel{structScore_a9202e14285ba5c068d496c798825c7fb}{{4.2}{7}{}{}{}}
\@writefile{toc}{\contentsline {section}{\numberline {4.3}Référence de la structure Vecteur}{7}{}\protected@file@percent }
\newlabel{structVecteur}{{4.3}{7}{}{}{}}
\newlabel{structVecteur_a6150e0515f7202e2fb518f7206ed97dc}{{4.3}{7}{}{}{}}
\newlabel{structVecteur_a0a2f84ed7838f07779ae24c5a9086d33}{{4.3}{7}{}{}{}}
\@writefile{toc}{\contentsline {chapter}{\numberline {5}Documentation des fichiers}{9}{}\protected@file@percent }
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\@writefile{toc}{\contentsline {section}{\numberline {5.1}display.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}h}{9}{}\protected@file@percent }
\newlabel{display_8h_source}{{5.1}{9}{}{}{}}
\@writefile{toc}{\contentsline {section}{\numberline {5.2}function.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}h}{9}{}\protected@file@percent }
\newlabel{function_8h_source}{{5.2}{9}{}{}{}}
\@writefile{toc}{\contentsline {section}{\numberline {5.3}read.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}h}{10}{}\protected@file@percent }
\newlabel{read_8h_source}{{5.3}{10}{}{}{}}
\@writefile{toc}{\contentsline {section}{\numberline {5.4}Référence du fichier display.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}c}{10}{}\protected@file@percent }
\newlabel{display_8c}{{5.4}{10}{}{}{}}
\gdef \LT@i {\LT@entry \gdef \LT@i {\LT@entry
{3}{46.81032pt}\LT@entry {3}{63.04623pt}\LT@entry
{3}{144.46304pt}} {3}{211.66475pt}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.4.1}Documentation des fonctions}{9}{}\protected@file@percent } \@writefile{toc}{\contentsline {subsection}{\numberline {5.4.1}Description détaillée}{11}{}\protected@file@percent }
\@writefile{toc}{\contentsline {subsubsection}{\numberline {4.4.1.1}displayImage()}{9}{}\protected@file@percent } \@writefile{toc}{\contentsline {subsection}{\numberline {5.4.2}Documentation des fonctions}{11}{}\protected@file@percent }
\newlabel{display_8c_a81a2b2da875550c614a407ec735ff9d9}{{4.4.1.1}{9}{}{}{}} \@writefile{toc}{\contentsline {subsubsection}{\numberline {5.4.2.1}backgroundDisplay()}{11}{}\protected@file@percent }
\newlabel{display_8c_adc264e6abc61064a8222b53822850cdd}{{5.4.2.1}{11}{}{}{}}
\@writefile{toc}{\contentsline {section}{\numberline {5.5}Référence du fichier function.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}c}{12}{}\protected@file@percent }
\newlabel{function_8c}{{5.5}{12}{}{}{}}
\newlabel{function_8c_a74650c59d33ff53d62ca3a3f8f56a68c}{{5.5}{12}{}{}{}}
\newlabel{function_8c_aeac9c46be252cd970406e3a2391b8e8c}{{5.5}{12}{}{}{}}
\newlabel{function_8c_acdbf299b1c7d8d708c4e7b014c43911a}{{5.5}{12}{}{}{}}
\gdef \LT@ii {\LT@entry \gdef \LT@ii {\LT@entry
{3}{63.04623pt}\LT@entry
{3}{163.64185pt}}
\gdef \LT@iii {\LT@entry
{3}{63.04623pt}\LT@entry
{3}{200.3251pt}}
\gdef \LT@iv {\LT@entry
{3}{63.04623pt}\LT@entry
{3}{117.98592pt}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {4.4.1.2}displayTextSDL()}{10}{}\protected@file@percent }
\newlabel{display_8c_af8c0265ee608800f8daba2540c65c5b0}{{4.4.1.2}{10}{}{}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {4.4.1.3}getMaxSize()}{10}{}\protected@file@percent }
\newlabel{display_8c_ab9c0348d4cff3f20344d763945c96b40}{{4.4.1.3}{10}{}{}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {4.4.1.4}initSDL()}{10}{}\protected@file@percent }
\newlabel{display_8c_a46638b64faa8239921eab8c3817847f4}{{4.4.1.4}{10}{}{}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {4.4.1.5}screenDisplay()}{11}{}\protected@file@percent }
\newlabel{display_8c_a99b9f82dcee1c08efb2101826d2f6b44}{{4.4.1.5}{11}{}{}{}}
\gdef \LT@v {\LT@entry
{3}{28.66687pt}\LT@entry
{3}{136.79523pt}}
\gdef \LT@vi {\LT@entry
{3}{63.04623pt}\LT@entry
{3}{261.32559pt}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {4.4.1.6}screenDisplayGameSDL()}{12}{}\protected@file@percent }
\newlabel{display_8c_a6f451a9d0fd4d2325d9f03d7cda4a189}{{4.4.1.6}{12}{}{}{}}
\@writefile{toc}{\contentsline {section}{\numberline {4.5}Référence du fichier function.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}c}{12}{}\protected@file@percent }
\newlabel{function_8c}{{4.5}{12}{}{}{}}
\newlabel{function_8c_a74650c59d33ff53d62ca3a3f8f56a68c}{{4.5}{13}{}{}{}}
\gdef \LT@vii {\LT@entry
{3}{49.54645pt}\LT@entry {3}{49.54645pt}\LT@entry
{3}{199.23586pt}} {3}{199.23586pt}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.5.1}Description détaillée}{14}{}\protected@file@percent } \@writefile{toc}{\contentsline {subsection}{\numberline {5.5.1}Description détaillée}{13}{}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {4.5.2}Documentation des fonctions}{14}{}\protected@file@percent } \@writefile{toc}{\contentsline {subsection}{\numberline {5.5.2}Documentation des fonctions}{13}{}\protected@file@percent }
\@writefile{toc}{\contentsline {subsubsection}{\numberline {4.5.2.1}blockBox()}{14}{}\protected@file@percent } \@writefile{toc}{\contentsline {subsubsection}{\numberline {5.5.2.1}blockBox()}{13}{}\protected@file@percent }
\newlabel{function_8c_ac51249b2f7941ca06e6a614e071dd444}{{4.5.2.1}{14}{}{}{}} \newlabel{function_8c_ac51249b2f7941ca06e6a614e071dd444}{{5.5.2.1}{13}{}{}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {4.5.2.2}canIGoDirection()}{14}{}\protected@file@percent } \@writefile{toc}{\contentsline {subsubsection}{\numberline {5.5.2.2}canIGoDirection()}{13}{}\protected@file@percent }
\newlabel{function_8c_a76df2bc0c692d3397837706a6852ac36}{{4.5.2.2}{14}{}{}{}} \newlabel{function_8c_a76df2bc0c692d3397837706a6852ac36}{{5.5.2.2}{13}{}{}{}}
\gdef \LT@viii {\LT@entry \gdef \LT@iii {\LT@entry
{3}{105.6064pt}\LT@entry {3}{105.6064pt}\LT@entry
{3}{343.19702pt}} {3}{343.19702pt}}
\gdef \LT@ix {\LT@entry \gdef \LT@iv {\LT@entry
{3}{19.29791pt}\LT@entry {3}{17.29996pt}\LT@entry
{3}{222.31146pt}} {3}{93.2995pt}}
\gdef \LT@x {\LT@entry \gdef \LT@v {\LT@entry
{3}{25.3097pt}\LT@entry {3}{25.3097pt}\LT@entry
{3}{103.52318pt}} {3}{91.80536pt}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {4.5.2.3}creatArea2D()}{15}{}\protected@file@percent } \@writefile{toc}{\contentsline {subsubsection}{\numberline {5.5.2.3}creatArea2D()}{14}{}\protected@file@percent }
\newlabel{function_8c_af81182d12b72ee349a71d6685217b097}{{4.5.2.3}{15}{}{}{}} \newlabel{function_8c_a1d06514900b90ce163ebe2d5aefc16db}{{5.5.2.3}{14}{}{}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {4.5.2.4}free2D()}{15}{}\protected@file@percent } \@writefile{toc}{\contentsline {subsubsection}{\numberline {5.5.2.4}free2D()}{14}{}\protected@file@percent }
\newlabel{function_8c_af19c482f0f97b30cbb0253356ed1724b}{{4.5.2.4}{15}{}{}{}} \newlabel{function_8c_a9011ea69a97e2101aa9bcc52cc60d4ce}{{5.5.2.4}{14}{}{}{}}
\gdef \LT@xi {\LT@entry \gdef \LT@vi {\LT@entry
{3}{63.04623pt}\LT@entry {3}{63.04623pt}\LT@entry
{3}{275.48282pt}} {3}{275.48282pt}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {4.5.2.5}inGameLoop()}{16}{}\protected@file@percent } \gdef \LT@vii {\LT@entry
\newlabel{function_8c_a2387ddb7cde4f9d45198b0c131a60878}{{4.5.2.5}{16}{}{}{}} {3}{63.04623pt}\LT@entry
\@writefile{toc}{\contentsline {subsubsection}{\numberline {4.5.2.6}islose()}{16}{}\protected@file@percent } {3}{275.48282pt}}
\newlabel{function_8c_ac155bb183b0c26d19758d8d065baf14f}{{4.5.2.6}{16}{}{}{}} \@writefile{toc}{\contentsline {subsubsection}{\numberline {5.5.2.5}inEditorLoop()}{15}{}\protected@file@percent }
\gdef \LT@xii {\LT@entry \newlabel{function_8c_aeba9362e7ee8b3d96352fd608b73a5c7}{{5.5.2.5}{15}{}{}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.5.2.6}inGameLoop()}{15}{}\protected@file@percent }
\newlabel{function_8c_a7f8e67bce9078c159778bbe2f57e9d2f}{{5.5.2.6}{15}{}{}{}}
\gdef \LT@viii {\LT@entry
{3}{35.3175pt}\LT@entry {3}{35.3175pt}\LT@entry
{3}{163.81259pt}} {3}{253.18985pt}}
\gdef \LT@xiii {\LT@entry \gdef \LT@ix {\LT@entry
{3}{58.32104pt}\LT@entry {3}{58.32104pt}\LT@entry
{3}{221.60031pt}} {3}{221.60031pt}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {4.5.2.7}isWin()}{17}{}\protected@file@percent } \@writefile{toc}{\contentsline {subsubsection}{\numberline {5.5.2.7}islose()}{16}{}\protected@file@percent }
\newlabel{function_8c_a618903fbb7302d98ef0f3e2e6b35b99a}{{4.5.2.7}{17}{}{}{}} \newlabel{function_8c_ac155bb183b0c26d19758d8d065baf14f}{{5.5.2.7}{16}{}{}{}}
\gdef \LT@xiv {\LT@entry \@writefile{toc}{\contentsline {subsubsection}{\numberline {5.5.2.8}isWin()}{16}{}\protected@file@percent }
\newlabel{function_8c_a618903fbb7302d98ef0f3e2e6b35b99a}{{5.5.2.8}{16}{}{}{}}
\gdef \LT@x {\LT@entry
{3}{57.3133pt}\LT@entry {3}{57.3133pt}\LT@entry
{3}{279.98279pt}} {3}{279.98279pt}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {4.5.2.8}move()}{18}{}\protected@file@percent } \gdef \LT@xi {\LT@entry
\newlabel{function_8c_ac93ca31d854d91eedf3babda7511407d}{{4.5.2.8}{18}{}{}{}} {3}{63.86525pt}\LT@entry
\gdef \LT@xv {\LT@entry {3}{99.941pt}}
\gdef \LT@xii {\LT@entry
{3}{27.8117pt}\LT@entry {3}{27.8117pt}\LT@entry
{3}{86.74762pt}} {3}{86.74762pt}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {4.5.2.9}plusVect()}{19}{}\protected@file@percent } \@writefile{toc}{\contentsline {subsubsection}{\numberline {5.5.2.9}move()}{17}{}\protected@file@percent }
\newlabel{function_8c_a5b10e69716d92eadf2ed0b3942cb9d4d}{{4.5.2.9}{19}{}{}{}} \newlabel{function_8c_a9c9b1fdde1684178393ffe6104ab615d}{{5.5.2.9}{17}{}{}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {4.5.2.10}timeToText()}{19}{}\protected@file@percent } \@writefile{toc}{\contentsline {subsubsection}{\numberline {5.5.2.10}nullScore()}{17}{}\protected@file@percent }
\newlabel{function_8c_a51c9ba7a24383f1b20dcedfcb570aab5}{{4.5.2.10}{19}{}{}{}} \newlabel{function_8c_a4a66f9d998c95fde67d6f89fef1fded5}{{5.5.2.10}{17}{}{}{}}
\gdef \LT@xvi {\LT@entry \@writefile{toc}{\contentsline {subsubsection}{\numberline {5.5.2.11}plusVect()}{17}{}\protected@file@percent }
\newlabel{function_8c_a5b10e69716d92eadf2ed0b3942cb9d4d}{{5.5.2.11}{17}{}{}{}}
\gdef \LT@xiii {\LT@entry
{3}{29.80064pt}\LT@entry {3}{29.80064pt}\LT@entry
{3}{139.27042pt}} {3}{139.27042pt}}
\@writefile{toc}{\contentsline {section}{\numberline {4.6}Référence du fichier main.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}c}{20}{}\protected@file@percent } \gdef \LT@xiv {\LT@entry
\newlabel{main_8c}{{4.6}{20}{}{}{}} {3}{63.04623pt}\LT@entry
\newlabel{main_8c_aa7f4c4d31124c28a9336ac84241cb2a0}{{4.6}{20}{}{}{}} {3}{189.34525pt}}
\newlabel{main_8c_a3e022139041191876c2fa02a3c51549f}{{4.6}{20}{}{}{}} \gdef \LT@xv {\LT@entry
\newlabel{main_8c_ae66f6b31b5ad750f1fe042a706a4e3d4}{{4.6}{21}{}{}{}} {3}{63.04623pt}\LT@entry
\@writefile{toc}{\contentsline {subsection}{\numberline {4.6.1}Description détaillée}{21}{}\protected@file@percent } {3}{211.66475pt}}
\@writefile{toc}{\contentsline {section}{\numberline {4.7}Référence du fichier read.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}c}{21}{}\protected@file@percent } \@writefile{toc}{\contentsline {subsubsection}{\numberline {5.5.2.12}timeToText()}{18}{}\protected@file@percent }
\newlabel{read_8c}{{4.7}{21}{}{}{}} \newlabel{function_8c_a51c9ba7a24383f1b20dcedfcb570aab5}{{5.5.2.12}{18}{}{}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.7.1}Description détaillée}{21}{}\protected@file@percent } \@writefile{toc}{\contentsline {subsubsection}{\numberline {5.5.2.13}titleScreen()}{18}{}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {4.7.2}Documentation des fonctions}{21}{}\protected@file@percent } \newlabel{function_8c_ad3517d7c8da5b33a96d376d7b07911c1}{{5.5.2.13}{18}{}{}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {4.7.2.1}fileToTab2D()}{21}{}\protected@file@percent } \@writefile{toc}{\contentsline {subsubsection}{\numberline {5.5.2.14}winOrLoseLoop()}{18}{}\protected@file@percent }
\newlabel{read_8c_a223592601b10fb9487363ff4bb417d5d}{{4.7.2.1}{21}{}{}{}} \newlabel{function_8c_a2dc9de2f6fd2bed3619d7ce8c1f05590}{{5.5.2.14}{18}{}{}{}}
\@writefile{toc}{\contentsline {section}{\numberline {5.6}Référence du fichier main.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}c}{19}{}\protected@file@percent }
\newlabel{main_8c}{{5.6}{19}{}{}{}}
\newlabel{main_8c_aa7f4c4d31124c28a9336ac84241cb2a0}{{5.6}{19}{}{}{}}
\newlabel{main_8c_a3e022139041191876c2fa02a3c51549f}{{5.6}{19}{}{}{}}
\newlabel{main_8c_ae66f6b31b5ad750f1fe042a706a4e3d4}{{5.6}{19}{}{}{}}
\newlabel{main_8c_ae21f357c223957d36046a0d71cc6aed7}{{5.6}{19}{}{}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.6.1}Description détaillée}{19}{}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {5.7}Référence du fichier read.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}c}{19}{}\protected@file@percent }
\newlabel{read_8c}{{5.7}{19}{}{}{}}
\gdef \LT@xvi {\LT@entry
{3}{75.08781pt}\LT@entry
{3}{312.71486pt}}
\gdef \LT@xvii {\LT@entry \gdef \LT@xvii {\LT@entry
{3}{58.32104pt}\LT@entry {3}{58.32104pt}\LT@entry
{3}{231.10452pt}} {3}{231.10452pt}}
\@writefile{toc}{\contentsline {chapter}{Index}{23}{}\protected@file@percent } \@writefile{toc}{\contentsline {subsection}{\numberline {5.7.1}Description détaillée}{20}{}\protected@file@percent }
\gdef \@abspage@last{27} \@writefile{toc}{\contentsline {subsection}{\numberline {5.7.2}Documentation des fonctions}{20}{}\protected@file@percent }
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.7.2.1}countCustomMaps()}{20}{}\protected@file@percent }
\newlabel{read_8c_a33f349fef5188584733f08c3a0eddbf2}{{5.7.2.1}{20}{}{}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.7.2.2}fileToTab2D()}{20}{}\protected@file@percent }
\newlabel{read_8c_a223592601b10fb9487363ff4bb417d5d}{{5.7.2.2}{20}{}{}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.7.2.3}generatorMenu()}{20}{}\protected@file@percent }
\newlabel{read_8c_aa77b744c6eb2919d8d69ae718210ce55}{{5.7.2.3}{20}{}{}{}}
\gdef \LT@xviii {\LT@entry
{3}{75.08781pt}\LT@entry
{3}{169.33891pt}}
\gdef \LT@xix {\LT@entry
{3}{46.81044pt}\LT@entry
{3}{120.98271pt}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.7.2.4}save\_grid\_to\_file()}{21}{}\protected@file@percent }
\newlabel{read_8c_a8f809f62f6622ef16b6dfe9081a124de}{{5.7.2.4}{21}{}{}{}}
\gdef \@abspage@last{26}

View File

@@ -0,0 +1,57 @@
# Fdb version 4
["pdflatex"] 1736343658.16025 "refman.tex" "refman.pdf" "refman" 1736343658.57608 2
"/usr/share/texmf-dist/tex/generic/iftex/ifpdf.sty" 1727349926 480 5778104efadad304ced77548ca2184b1 ""
"/usr/share/texmf-dist/tex/generic/iftex/iftex.sty" 1727349926 7237 bdd120a32c8fdb4b433cf9ca2e7cd98a ""
"/usr/share/texmf-dist/tex/generic/infwarerr/infwarerr.sty" 1727349926 8356 7bbb2c2373aa810be568c29e333da8ed ""
"/usr/share/texmf-dist/tex/generic/xkeyval/xkeyval.tex" 1727349926 19231 27205ee17aaa2902aea3e0c07a3cfc65 ""
"/usr/share/texmf-dist/tex/generic/xkeyval/xkvutils.tex" 1727349926 7677 9cb1a74d945bc9331f2181c0a59ff34a ""
"/usr/share/texmf-dist/tex/latex/adjustbox/adjcalc.sty" 1727349926 5598 c49b91713cbe5e50a1fabefb733eda0d ""
"/usr/share/texmf-dist/tex/latex/adjustbox/adjustbox.sty" 1727349926 56907 e3e515e490dbc35309a010b5bbe1bef5 ""
"/usr/share/texmf-dist/tex/latex/adjustbox/tc-pdftex.def" 1727349926 4070 1677cfee6374067b93f61cf57ecd7144 ""
"/usr/share/texmf-dist/tex/latex/adjustbox/trimclip.sty" 1727349926 7244 36558f478da08e083d7316a63ba4bcd6 ""
"/usr/share/texmf-dist/tex/latex/amsfonts/amsfonts.sty" 1727349926 5949 3f3fd50a8cc94c3d4cbf4fc66cd3df1c ""
"/usr/share/texmf-dist/tex/latex/amsfonts/amssymb.sty" 1727349926 13829 94730e64147574077f8ecfea9bb69af4 ""
"/usr/share/texmf-dist/tex/latex/base/alltt.sty" 1727349926 3137 080666101e6db698c7daf04c95abb706 ""
"/usr/share/texmf-dist/tex/latex/base/bk10.clo" 1727349926 8288 82eb4750175f9093ea089563156e1d65 ""
"/usr/share/texmf-dist/tex/latex/base/book.cls" 1727349926 23268 80674e17dbdc75804bd4d067e837600a ""
"/usr/share/texmf-dist/tex/latex/base/ifthen.sty" 1727349926 5319 2b738d02ce36ada6dcdd9534940db0ee ""
"/usr/share/texmf-dist/tex/latex/collectbox/collectbox.sty" 1727349926 9124 59c3b56f1a073de66e3eea35f9c173c8 ""
"/usr/share/texmf-dist/tex/latex/colortbl/colortbl.sty" 1727349926 12355 ec728d2e4c37cf8919ee2eff9b75ad0c ""
"/usr/share/texmf-dist/tex/latex/etoolbox/etoolbox.sty" 1727349926 46845 3b58f70c6e861a13d927bff09d35ecbc ""
"/usr/share/texmf-dist/tex/latex/fancyvrb/fancyvrb.sty" 1727349926 43712 c3d93734f3bc56e03c21b3dc69268d3c ""
"/usr/share/texmf-dist/tex/latex/float/float.sty" 1727349926 6749 16d2656a1984957e674b149555f1ea1d ""
"/usr/share/texmf-dist/tex/latex/graphics-cfg/color.cfg" 1727349926 1213 620bba36b25224fa9b7e1ccb4ecb76fd ""
"/usr/share/texmf-dist/tex/latex/graphics-cfg/graphics.cfg" 1727349926 1224 978390e9c2234eab29404bc21b268d1e ""
"/usr/share/texmf-dist/tex/latex/graphics-def/pdftex.def" 1727349926 19448 1e988b341dda20961a6b931bcde55519 ""
"/usr/share/texmf-dist/tex/latex/graphics/color.sty" 1727349926 7233 e46ce9241d2b2ca2a78155475fdd557a ""
"/usr/share/texmf-dist/tex/latex/graphics/graphics.sty" 1727349926 18387 8f900a490197ebaf93c02ae9476d4b09 ""
"/usr/share/texmf-dist/tex/latex/graphics/graphicx.sty" 1727349926 8010 a8d949cbdbc5c983593827c9eec252e1 ""
"/usr/share/texmf-dist/tex/latex/graphics/keyval.sty" 1727349926 2671 7e67d78d9b88c845599a85b2d41f2e39 ""
"/usr/share/texmf-dist/tex/latex/graphics/mathcolor.ltx" 1727349926 2885 9c645d672ae17285bba324998918efd8 ""
"/usr/share/texmf-dist/tex/latex/graphics/trig.sty" 1727349926 4023 293ea1c16429fc0c4cf605f4da1791a9 ""
"/usr/share/texmf-dist/tex/latex/hanging/hanging.sty" 1727349926 4463 c6799c846e929ba38d06f5b592b4b2e3 ""
"/usr/share/texmf-dist/tex/latex/ifoddpage/ifoddpage.sty" 1727349926 2142 eae42205b97b7a3ad0e58db5fe99e3e6 ""
"/usr/share/texmf-dist/tex/latex/multirow/multirow.sty" 1727349926 6149 2398eec4faa1ee24ff761581e580ecf1 ""
"/usr/share/texmf-dist/tex/latex/stackengine/stackengine.sty" 1727349926 16455 7159cc65692c01a770db5ae586ea9570 ""
"/usr/share/texmf-dist/tex/latex/tools/array-2016-10-06.sty" 1727349926 11749 3394b6f84fe212fe4c1e5071e615b5fa ""
"/usr/share/texmf-dist/tex/latex/tools/array.sty" 1727349926 12667 e4b5eb11e4b7239e6c8a52bbe074a6c6 ""
"/usr/share/texmf-dist/tex/latex/tools/calc.sty" 1727349926 10214 547fd4d29642cb7c80bf54b49d447f01 ""
"/usr/share/texmf-dist/tex/latex/tools/multicol.sty" 1727349926 32515 51caec75eda9c8890135f12f1a4eddc3 ""
"/usr/share/texmf-dist/tex/latex/tools/tabularx.sty" 1727349926 7147 d45559f8a31b8c53ada0640516660003 ""
"/usr/share/texmf-dist/tex/latex/tools/verbatim.sty" 1727349926 7500 db31c3d04f8bc9010e47a5efbbace9ff ""
"/usr/share/texmf-dist/tex/latex/varwidth/varwidth.sty" 1727349926 10894 d359a13923460b2a73d4312d613554c8 ""
"/usr/share/texmf-dist/tex/latex/xcolor/xcolor.sty" 1727349926 55487 80a65caedd3722f4c20a14a69e785d8f ""
"/usr/share/texmf-dist/tex/latex/xkeyval/xkeyval.sty" 1727349926 4937 4ce600ce9bd4ec84d0250eb6892fcf4f ""
"/usr/share/texmf-dist/web2c/texmf.cnf" 1727349926 41588 b43d3e860a4f94167ee1e725ff526a72 ""
"/var/lib/texmf/web2c/pdftex/pdflatex.fmt" 1736343361 7113024 d848bcf9112ad9df29896532c2f4e9cb ""
"doxygen.sty" 1736341739.25325 21290 447aac9e7d6d4f61eeaa1e18b31f63e5 ""
"listofitems.sty" 0 -1 0 ""
"longtable_doxygen.sty" 1736341739.25325 12723 357eea3cf5c4ca967f31876959c5d442 ""
"refman.aux" 1736343625.16036 10905 1fa61e19147bb9c8fa17d565ab2b66f8 "pdflatex"
"refman.tex" 1736341739.29658 6881 906889659723ccb5b8466b76ea373e95 ""
"tabu_doxygen.sty" 1736341739.25325 114990 77bb6213c96e0c5e230e3f050f65d28f ""
(generated)
"refman.aux"
"refman.log"
"refman.pdf"
(rewritten before read)

98
rapport/latex/refman.fls Normal file
View File

@@ -0,0 +1,98 @@
PWD /home/dukantic/floppy/isima/sokoban/rapport/latex
INPUT /usr/share/texmf-dist/web2c/texmf.cnf
INPUT /var/lib/texmf/web2c/pdftex/pdflatex.fmt
INPUT refman.tex
OUTPUT refman.log
INPUT /usr/share/texmf-dist/tex/generic/iftex/iftex.sty
INPUT /usr/share/texmf-dist/tex/generic/iftex/iftex.sty
INPUT /usr/share/texmf-dist/tex/latex/base/book.cls
INPUT /usr/share/texmf-dist/tex/latex/base/book.cls
INPUT /usr/share/texmf-dist/tex/latex/base/bk10.clo
INPUT /usr/share/texmf-dist/tex/latex/base/bk10.clo
INPUT /usr/share/texmf-dist/tex/latex/base/bk10.clo
INPUT /usr/share/texmf-dist/tex/latex/base/ifthen.sty
INPUT /usr/share/texmf-dist/tex/latex/base/ifthen.sty
INPUT /usr/share/texmf-dist/tex/latex/tools/array.sty
INPUT /usr/share/texmf-dist/tex/latex/tools/array.sty
INPUT /usr/share/texmf-dist/tex/latex/tools/array-2016-10-06.sty
INPUT /usr/share/texmf-dist/tex/generic/infwarerr/infwarerr.sty
INPUT /usr/share/texmf-dist/tex/generic/infwarerr/infwarerr.sty
INPUT ./doxygen.sty
INPUT doxygen.sty
INPUT /usr/share/texmf-dist/tex/latex/base/alltt.sty
INPUT /usr/share/texmf-dist/tex/latex/base/alltt.sty
INPUT /usr/share/texmf-dist/tex/latex/tools/calc.sty
INPUT /usr/share/texmf-dist/tex/latex/tools/calc.sty
INPUT /usr/share/texmf-dist/tex/latex/float/float.sty
INPUT /usr/share/texmf-dist/tex/latex/float/float.sty
INPUT /usr/share/texmf-dist/tex/latex/tools/verbatim.sty
INPUT /usr/share/texmf-dist/tex/latex/tools/verbatim.sty
INPUT /usr/share/texmf-dist/tex/latex/xcolor/xcolor.sty
INPUT /usr/share/texmf-dist/tex/latex/xcolor/xcolor.sty
INPUT /usr/share/texmf-dist/tex/latex/graphics-cfg/color.cfg
INPUT /usr/share/texmf-dist/tex/latex/graphics-cfg/color.cfg
INPUT /usr/share/texmf-dist/tex/latex/graphics-cfg/color.cfg
INPUT /usr/share/texmf-dist/tex/latex/graphics-def/pdftex.def
INPUT /usr/share/texmf-dist/tex/latex/graphics-def/pdftex.def
INPUT /usr/share/texmf-dist/tex/latex/graphics-def/pdftex.def
INPUT /usr/share/texmf-dist/tex/latex/graphics/mathcolor.ltx
INPUT /usr/share/texmf-dist/tex/latex/graphics/mathcolor.ltx
INPUT /usr/share/texmf-dist/tex/latex/graphics/mathcolor.ltx
INPUT /usr/share/texmf-dist/tex/latex/colortbl/colortbl.sty
INPUT /usr/share/texmf-dist/tex/latex/colortbl/colortbl.sty
INPUT /usr/share/texmf-dist/tex/latex/graphics/color.sty
INPUT ./longtable_doxygen.sty
INPUT longtable_doxygen.sty
INPUT ./tabu_doxygen.sty
INPUT tabu_doxygen.sty
INPUT /usr/share/texmf-dist/tex/latex/varwidth/varwidth.sty
INPUT /usr/share/texmf-dist/tex/latex/varwidth/varwidth.sty
INPUT /usr/share/texmf-dist/tex/latex/fancyvrb/fancyvrb.sty
INPUT /usr/share/texmf-dist/tex/latex/fancyvrb/fancyvrb.sty
INPUT /usr/share/texmf-dist/tex/latex/graphics/keyval.sty
INPUT /usr/share/texmf-dist/tex/latex/graphics/keyval.sty
INPUT /usr/share/texmf-dist/tex/latex/tools/tabularx.sty
INPUT /usr/share/texmf-dist/tex/latex/tools/tabularx.sty
INPUT /usr/share/texmf-dist/tex/latex/tools/multicol.sty
INPUT /usr/share/texmf-dist/tex/latex/tools/multicol.sty
INPUT /usr/share/texmf-dist/tex/latex/multirow/multirow.sty
INPUT /usr/share/texmf-dist/tex/latex/multirow/multirow.sty
INPUT /usr/share/texmf-dist/tex/latex/hanging/hanging.sty
INPUT /usr/share/texmf-dist/tex/latex/hanging/hanging.sty
INPUT /usr/share/texmf-dist/tex/generic/iftex/ifpdf.sty
INPUT /usr/share/texmf-dist/tex/generic/iftex/ifpdf.sty
INPUT /usr/share/texmf-dist/tex/latex/adjustbox/adjustbox.sty
INPUT /usr/share/texmf-dist/tex/latex/adjustbox/adjustbox.sty
INPUT /usr/share/texmf-dist/tex/latex/xkeyval/xkeyval.sty
INPUT /usr/share/texmf-dist/tex/latex/xkeyval/xkeyval.sty
INPUT /usr/share/texmf-dist/tex/generic/xkeyval/xkeyval.tex
INPUT /usr/share/texmf-dist/tex/generic/xkeyval/xkvutils.tex
INPUT /usr/share/texmf-dist/tex/latex/adjustbox/adjcalc.sty
INPUT /usr/share/texmf-dist/tex/latex/adjustbox/adjcalc.sty
INPUT /usr/share/texmf-dist/tex/latex/adjustbox/trimclip.sty
INPUT /usr/share/texmf-dist/tex/latex/adjustbox/trimclip.sty
INPUT /usr/share/texmf-dist/tex/latex/graphics/graphicx.sty
INPUT /usr/share/texmf-dist/tex/latex/graphics/graphicx.sty
INPUT /usr/share/texmf-dist/tex/latex/graphics/graphics.sty
INPUT /usr/share/texmf-dist/tex/latex/graphics/graphics.sty
INPUT /usr/share/texmf-dist/tex/latex/graphics/trig.sty
INPUT /usr/share/texmf-dist/tex/latex/graphics/trig.sty
INPUT /usr/share/texmf-dist/tex/latex/graphics-cfg/graphics.cfg
INPUT /usr/share/texmf-dist/tex/latex/graphics-cfg/graphics.cfg
INPUT /usr/share/texmf-dist/tex/latex/graphics-cfg/graphics.cfg
INPUT /usr/share/texmf-dist/tex/latex/collectbox/collectbox.sty
INPUT /usr/share/texmf-dist/tex/latex/collectbox/collectbox.sty
INPUT /usr/share/texmf-dist/tex/latex/adjustbox/tc-pdftex.def
INPUT /usr/share/texmf-dist/tex/latex/adjustbox/tc-pdftex.def
INPUT /usr/share/texmf-dist/tex/latex/adjustbox/tc-pdftex.def
INPUT /usr/share/texmf-dist/tex/latex/ifoddpage/ifoddpage.sty
INPUT /usr/share/texmf-dist/tex/latex/ifoddpage/ifoddpage.sty
INPUT /usr/share/texmf-dist/tex/latex/ifoddpage/ifoddpage.sty
INPUT /usr/share/texmf-dist/tex/latex/amsfonts/amssymb.sty
INPUT /usr/share/texmf-dist/tex/latex/amsfonts/amssymb.sty
INPUT /usr/share/texmf-dist/tex/latex/amsfonts/amsfonts.sty
INPUT /usr/share/texmf-dist/tex/latex/amsfonts/amsfonts.sty
INPUT /usr/share/texmf-dist/tex/latex/stackengine/stackengine.sty
INPUT /usr/share/texmf-dist/tex/latex/stackengine/stackengine.sty
INPUT /usr/share/texmf-dist/tex/latex/etoolbox/etoolbox.sty
INPUT /usr/share/texmf-dist/tex/latex/etoolbox/etoolbox.sty

View File

@@ -1,44 +1,49 @@
\indexentry{essential\_sdl@{essential\_sdl}}{5} \indexentry{Main Test@{Main Test}}{1}
\indexentry{Score@{Score}}{5} \indexentry{essential\_sdl@{essential\_sdl}}{7}
\indexentry{Vecteur@{Vecteur}}{6} \indexentry{Score@{Score}}{7}
\indexentry{display.h@{display.h}}{7} \indexentry{Vecteur@{Vecteur}}{7}
\indexentry{function.h@{function.h}}{7} \indexentry{display.h@{display.h}}{9}
\indexentry{read.h@{read.h}}{8} \indexentry{function.h@{function.h}}{9}
\indexentry{display.c@{display.c}}{8} \indexentry{read.h@{read.h}}{10}
\indexentry{display.c@{display.c}!displayImage@{displayImage}}{9} \indexentry{display.c@{display.c}}{10}
\indexentry{displayImage@{displayImage}!display.c@{display.c}}{9} \indexentry{display.c@{display.c}!backgroundDisplay@{backgroundDisplay}}{11}
\indexentry{display.c@{display.c}!displayTextSDL@{displayTextSDL}}{9} \indexentry{backgroundDisplay@{backgroundDisplay}!display.c@{display.c}}{11}
\indexentry{displayTextSDL@{displayTextSDL}!display.c@{display.c}}{9}
\indexentry{display.c@{display.c}!getMaxSize@{getMaxSize}}{10}
\indexentry{getMaxSize@{getMaxSize}!display.c@{display.c}}{10}
\indexentry{display.c@{display.c}!initSDL@{initSDL}}{10}
\indexentry{initSDL@{initSDL}!display.c@{display.c}}{10}
\indexentry{display.c@{display.c}!screenDisplay@{screenDisplay}}{10}
\indexentry{screenDisplay@{screenDisplay}!display.c@{display.c}}{10}
\indexentry{display.c@{display.c}!screenDisplayGameSDL@{screenDisplayGameSDL}}{12}
\indexentry{screenDisplayGameSDL@{screenDisplayGameSDL}!display.c@{display.c}}{12}
\indexentry{function.c@{function.c}}{12} \indexentry{function.c@{function.c}}{12}
\indexentry{function.c@{function.c}!blockBox@{blockBox}}{14} \indexentry{function.c@{function.c}!blockBox@{blockBox}}{13}
\indexentry{blockBox@{blockBox}!function.c@{function.c}}{14} \indexentry{blockBox@{blockBox}!function.c@{function.c}}{13}
\indexentry{function.c@{function.c}!canIGoDirection@{canIGoDirection}}{14} \indexentry{function.c@{function.c}!canIGoDirection@{canIGoDirection}}{13}
\indexentry{canIGoDirection@{canIGoDirection}!function.c@{function.c}}{14} \indexentry{canIGoDirection@{canIGoDirection}!function.c@{function.c}}{13}
\indexentry{function.c@{function.c}!creatArea2D@{creatArea2D}}{15} \indexentry{function.c@{function.c}!creatArea2D@{creatArea2D}}{14}
\indexentry{creatArea2D@{creatArea2D}!function.c@{function.c}}{15} \indexentry{creatArea2D@{creatArea2D}!function.c@{function.c}}{14}
\indexentry{function.c@{function.c}!free2D@{free2D}}{15} \indexentry{function.c@{function.c}!free2D@{free2D}}{14}
\indexentry{free2D@{free2D}!function.c@{function.c}}{15} \indexentry{free2D@{free2D}!function.c@{function.c}}{14}
\indexentry{function.c@{function.c}!inEditorLoop@{inEditorLoop}}{14}
\indexentry{inEditorLoop@{inEditorLoop}!function.c@{function.c}}{14}
\indexentry{function.c@{function.c}!inGameLoop@{inGameLoop}}{15} \indexentry{function.c@{function.c}!inGameLoop@{inGameLoop}}{15}
\indexentry{inGameLoop@{inGameLoop}!function.c@{function.c}}{15} \indexentry{inGameLoop@{inGameLoop}!function.c@{function.c}}{15}
\indexentry{function.c@{function.c}!islose@{islose}}{16} \indexentry{function.c@{function.c}!islose@{islose}}{16}
\indexentry{islose@{islose}!function.c@{function.c}}{16} \indexentry{islose@{islose}!function.c@{function.c}}{16}
\indexentry{function.c@{function.c}!isWin@{isWin}}{17} \indexentry{function.c@{function.c}!isWin@{isWin}}{16}
\indexentry{isWin@{isWin}!function.c@{function.c}}{17} \indexentry{isWin@{isWin}!function.c@{function.c}}{16}
\indexentry{function.c@{function.c}!move@{move}}{18} \indexentry{function.c@{function.c}!move@{move}}{16}
\indexentry{move@{move}!function.c@{function.c}}{18} \indexentry{move@{move}!function.c@{function.c}}{16}
\indexentry{function.c@{function.c}!plusVect@{plusVect}}{19} \indexentry{function.c@{function.c}!nullScore@{nullScore}}{17}
\indexentry{plusVect@{plusVect}!function.c@{function.c}}{19} \indexentry{nullScore@{nullScore}!function.c@{function.c}}{17}
\indexentry{function.c@{function.c}!timeToText@{timeToText}}{19} \indexentry{function.c@{function.c}!plusVect@{plusVect}}{17}
\indexentry{timeToText@{timeToText}!function.c@{function.c}}{19} \indexentry{plusVect@{plusVect}!function.c@{function.c}}{17}
\indexentry{main.c@{main.c}}{20} \indexentry{function.c@{function.c}!timeToText@{timeToText}}{17}
\indexentry{read.c@{read.c}}{21} \indexentry{timeToText@{timeToText}!function.c@{function.c}}{17}
\indexentry{read.c@{read.c}!fileToTab2D@{fileToTab2D}}{21} \indexentry{function.c@{function.c}!titleScreen@{titleScreen}}{18}
\indexentry{fileToTab2D@{fileToTab2D}!read.c@{read.c}}{21} \indexentry{titleScreen@{titleScreen}!function.c@{function.c}}{18}
\indexentry{function.c@{function.c}!winOrLoseLoop@{winOrLoseLoop}}{18}
\indexentry{winOrLoseLoop@{winOrLoseLoop}!function.c@{function.c}}{18}
\indexentry{main.c@{main.c}}{19}
\indexentry{read.c@{read.c}}{19}
\indexentry{read.c@{read.c}!countCustomMaps@{countCustomMaps}}{20}
\indexentry{countCustomMaps@{countCustomMaps}!read.c@{read.c}}{20}
\indexentry{read.c@{read.c}!fileToTab2D@{fileToTab2D}}{20}
\indexentry{fileToTab2D@{fileToTab2D}!read.c@{read.c}}{20}
\indexentry{read.c@{read.c}!generatorMenu@{generatorMenu}}{20}
\indexentry{generatorMenu@{generatorMenu}!read.c@{read.c}}{20}
\indexentry{read.c@{read.c}!save\_grid\_to\_file@{save\_grid\_to\_file}}{21}
\indexentry{save\_grid\_to\_file@{save\_grid\_to\_file}!read.c@{read.c}}{21}

View File

@@ -1,6 +0,0 @@
This is makeindex, version 2.17 [TeX Live 2024] (kpathsea + Thai support).
Scanning input file refman.idx....done (44 entries accepted, 0 rejected).
Sorting entries....done (239 comparisons).
Generating output file refman.ind....done (101 lines written, 0 warnings).
Output written in refman.ind.
Transcript written in refman.ilg.

View File

@@ -1,101 +0,0 @@
\begin{theindex}
\item {blockBox}
\subitem {function.c}, 14
\indexspace
\item {canIGoDirection}
\subitem {function.c}, 14
\item {creatArea2D}
\subitem {function.c}, 15
\indexspace
\item {display.c}, 8
\subitem {displayImage}, 9
\subitem {displayTextSDL}, 9
\subitem {getMaxSize}, 10
\subitem {initSDL}, 10
\subitem {screenDisplay}, 10
\subitem {screenDisplayGameSDL}, 12
\item {display.h}, 7
\item {displayImage}
\subitem {display.c}, 9
\item {displayTextSDL}
\subitem {display.c}, 9
\indexspace
\item {essential\_sdl}, 5
\indexspace
\item {fileToTab2D}
\subitem {read.c}, 21
\item {free2D}
\subitem {function.c}, 15
\item {function.c}, 12
\subitem {blockBox}, 14
\subitem {canIGoDirection}, 14
\subitem {creatArea2D}, 15
\subitem {free2D}, 15
\subitem {inGameLoop}, 15
\subitem {islose}, 16
\subitem {isWin}, 17
\subitem {move}, 18
\subitem {plusVect}, 19
\subitem {timeToText}, 19
\item {function.h}, 7
\indexspace
\item {getMaxSize}
\subitem {display.c}, 10
\indexspace
\item {inGameLoop}
\subitem {function.c}, 15
\item {initSDL}
\subitem {display.c}, 10
\item {islose}
\subitem {function.c}, 16
\item {isWin}
\subitem {function.c}, 17
\indexspace
\item {main.c}, 20
\item {move}
\subitem {function.c}, 18
\indexspace
\item {plusVect}
\subitem {function.c}, 19
\indexspace
\item {read.c}, 21
\subitem {fileToTab2D}, 21
\item {read.h}, 8
\indexspace
\item {Score}, 5
\item {screenDisplay}
\subitem {display.c}, 10
\item {screenDisplayGameSDL}
\subitem {display.c}, 12
\indexspace
\item {timeToText}
\subitem {function.c}, 19
\indexspace
\item {Vecteur}, 6
\end{theindex}

View File

@@ -1,8 +1,8 @@
This is pdfTeX, Version 3.141592653-2.6-1.40.26 (TeX Live 2024/Arch Linux) (preloaded format=pdflatex 2024.12.20) 20 DEC 2024 16:57 This is pdfTeX, Version 3.141592653-2.6-1.40.26 (TeX Live 2024/Arch Linux) (preloaded format=pdflatex 2025.1.8) 8 JAN 2025 15:15
entering extended mode entering extended mode
restricted \write18 enabled. restricted \write18 enabled.
%&-line parsing enabled. %&-line parsing enabled.
**refman **refman.tex
(./refman.tex (./refman.tex
LaTeX2e <2023-11-01> patch level 1 LaTeX2e <2023-11-01> patch level 1
L3 programming layer <2024-02-20> L3 programming layer <2024-02-20>
@@ -356,14 +356,15 @@ ways
Package: etoolbox 2020/10/05 v2.5k e-TeX tools for LaTeX (JAW) Package: etoolbox 2020/10/05 v2.5k e-TeX tools for LaTeX (JAW)
\etb@tempcnta=\count297 \etb@tempcnta=\count297
) )
(/usr/share/texmf-dist/tex/generic/listofitems/listofitems.sty
! LaTeX Error: File `listofitems.sty' not found. (/usr/share/texmf-dist/tex/generic/listofitems/listofitems.tex
\loi_cnt_foreach_nest=\count298
Type X to quit or <RETURN> to proceed, \loi_nestcnt=\count299
or enter new name. (Default extension: sty) )
Package: listofitems 2024/03/09 v1.65 Grab items in lists using user-specified
Enter file name: sep char (CT)
\c@@stackindex=\count298 )
\c@@stackindex=\count300
\@boxshift=\skip73 \@boxshift=\skip73
\stack@tmplength=\skip74 \stack@tmplength=\skip74
\temp@stkl=\skip75 \temp@stkl=\skip75
@@ -374,15 +375,16 @@ Enter file name:
\se@backgroundbox=\box113 \se@backgroundbox=\box113
\stackedbox=\box114 \stackedbox=\box114
\@centerbox=\box115 \@centerbox=\box115
\c@ROWcellindex@=\count299 \c@ROWcellindex@=\count301
) (/usr/share/texmf-dist/tex/latex/enumitem/enumitem.sty )
(/usr/share/texmf-dist/tex/latex/enumitem/enumitem.sty
Package: enumitem 2019/06/20 v3.9 Customized lists Package: enumitem 2019/06/20 v3.9 Customized lists
\labelindent=\skip77 \labelindent=\skip77
\enit@outerparindent=\dimen186 \enit@outerparindent=\dimen186
\enit@toks=\toks31 \enit@toks=\toks31
\enit@inbox=\box116 \enit@inbox=\box116
\enit@count@id=\count300 \enit@count@id=\count302
\enitdp@description=\count301 \enitdp@description=\count303
) )
(/usr/share/texmf-dist/tex/generic/alphalph/alphalph.sty (/usr/share/texmf-dist/tex/generic/alphalph/alphalph.sty
Package: alphalph 2019/12/09 v2.6 Convert numbers to letters (HO) Package: alphalph 2019/12/09 v2.6 Convert numbers to letters (HO)
@@ -390,40 +392,46 @@ Package: alphalph 2019/12/09 v2.6 Convert numbers to letters (HO)
(/usr/share/texmf-dist/tex/generic/intcalc/intcalc.sty (/usr/share/texmf-dist/tex/generic/intcalc/intcalc.sty
Package: intcalc 2019/12/15 v1.3 Expandable calculations with integers (HO) Package: intcalc 2019/12/15 v1.3 Expandable calculations with integers (HO)
)) ))
(/usr/share/texmf-dist/tex/generic/ulem/ulem.sty
! LaTeX Error: File `ulem.sty' not found. \UL@box=\box117
\UL@hyphenbox=\box118
Type X to quit or <RETURN> to proceed, \UL@skip=\skip78
or enter new name. (Default extension: sty) \UL@hook=\toks32
\UL@height=\dimen187
Enter file name: \UL@pe=\count304
\xrefbox=\box117 \UL@pixel=\dimen188
\xreflength=\skip78 \ULC@box=\box119
\CodeWidthChar=\skip79 Package: ulem 2019/11/18
\CodeHeightChar=\skip80 \ULdepth=\dimen189
\DoxyCodeWidth=\skip81 )
\c@DoxyEnumeratei=\count302 \xrefbox=\box120
\c@DoxyEnumerateii=\count303 \xreflength=\skip79
\c@DoxyEnumerateiii=\count304 \CodeWidthChar=\skip80
\c@DoxyEnumerateiv=\count305 \CodeHeightChar=\skip81
\c@DoxyEnumeratev=\count306 \DoxyCodeWidth=\skip82
\c@DoxyEnumeratevi=\count307 \c@DoxyEnumeratei=\count305
\c@DoxyEnumeratevii=\count308 \c@DoxyEnumerateii=\count306
\c@DoxyEnumerateviii=\count309 \c@DoxyEnumerateiii=\count307
\c@DoxyEnumerateix=\count310 \c@DoxyEnumerateiv=\count308
\c@DoxyEnumeratex=\count311 \c@DoxyEnumeratev=\count309
\c@DoxyEnumeratexi=\count312 \c@DoxyEnumeratevi=\count310
\c@DoxyEnumeratexii=\count313 \c@DoxyEnumeratevii=\count311
\enitdp@DoxyEnumerate=\count314 \c@DoxyEnumerateviii=\count312
\enitdp@DoxyItemize=\count315 \c@DoxyEnumerateix=\count313
\c@subsubsubsection=\count316 \c@DoxyEnumeratex=\count314
\c@subsubsubsubsection=\count317 \c@DoxyEnumeratexi=\count315
\c@subsubsubsubsubsection=\count318 \c@DoxyEnumeratexii=\count316
\c@subsubsubsubsubsubsection=\count319 \enitdp@DoxyEnumerate=\count317
) (/usr/share/texmf-dist/tex/latex/base/inputenc.sty \enitdp@DoxyItemize=\count318
\c@subsubsubsection=\count319
\c@subsubsubsubsection=\count320
\c@subsubsubsubsubsection=\count321
\c@subsubsubsubsubsubsection=\count322
)
(/usr/share/texmf-dist/tex/latex/base/inputenc.sty
Package: inputenc 2021/02/14 v1.3d Input encoding file Package: inputenc 2021/02/14 v1.3d Input encoding file
\inpenc@prehook=\toks32 \inpenc@prehook=\toks33
\inpenc@posthook=\toks33 \inpenc@posthook=\toks34
) )
(/usr/share/texmf-dist/tex/latex/base/makeidx.sty (/usr/share/texmf-dist/tex/latex/base/makeidx.sty
Package: makeidx 2021/10/04 v1.0m Standard LaTeX package Package: makeidx 2021/10/04 v1.0m Standard LaTeX package
@@ -442,47 +450,42 @@ Package: ifxetex 2019/10/25 v0.7 ifxetex legacy package. Use iftex instead.
) )
(/usr/share/texmf-dist/tex/generic/babel/babel.sty (/usr/share/texmf-dist/tex/generic/babel/babel.sty
Package: babel 2024/02/07 v24.2 The Babel package Package: babel 2024/02/07 v24.2 The Babel package
\babel@savecnt=\count320 \babel@savecnt=\count323
\U@D=\dimen187 \U@D=\dimen190
\l@unhyphenated=\language7 \l@unhyphenated=\language5
(/usr/share/texmf-dist/tex/generic/babel/txtbabel.def) (/usr/share/texmf-dist/tex/generic/babel/txtbabel.def)
\bbl@readstream=\read4 \bbl@readstream=\read4
\bbl@dirlevel=\count321 \bbl@dirlevel=\count324
(/usr/share/texmf-dist/tex/generic/babel-french/french.ldf (/usr/share/texmf-dist/tex/generic/babel/errbabel.def)
Language: french 2024-02-29 v3.5s French support from the babel system
Package babel Info: Hyphen rules for 'acadian' set to \l@french ! Package babel Error: Unknown option 'french'. Either you misspelled it
(babel) (\language6). Reported on input line 91. (babel) or the language definition file french.ldf
Package babel Info: Hyphen rules for 'canadien' set to \l@french (babel) was not found.
(babel) (\language6). Reported on input line 92. (babel) There is a locale ini file for this language.
\FB@stdchar=\count322 (babel) If its the main language, try adding `provide=*'
Package babel Info: Making : an active character on input line 420. (babel) to the babel package options.
Package babel Info: Making ; an active character on input line 421.
Package babel Info: Making ! an active character on input line 422. See the babel package documentation for explanation.
Package babel Info: Making ? an active character on input line 423. Type H <return> for immediate help.
\FBguill@level=\count323 ...
\FBold@everypar=\toks34
\FB@Mht=\dimen188 l.4210 \ProcessOptions*
\mc@charclass=\count324
\mc@charfam=\count325 ?
\mc@charslot=\count326 Package babel Info: You haven't specified a language as a class or package
\std@mcc=\count327 (babel) option. I'll load 'nil'. Reported on input line 4258.
\dec@mcc=\count328 (/usr/share/texmf-dist/tex/generic/babel/nil.ldf
\FB@parskip=\dimen189 Language: nil 2024/02/07 v24.2 Nil language
\listindentFB=\dimen190 \l@nil=\language6
\descindentFB=\dimen191
\labelindentFB=\dimen192
\labelwidthFB=\dimen193
\leftmarginFB=\dimen194
\parindentFFN=\dimen195
\FBfnindent=\dimen196
)) ))
(/usr/share/texmf-dist/tex/generic/babel/locale/fr/babel-french.tex ! Undefined control sequence.
Package babel Info: Importing font and identification data for french <recently read> \NoAutoSpaceBeforeFDP
(babel) from babel-fr.ini. Reported on input line 11.
) l.53 \NoAutoSpaceBeforeFDP
(/usr/share/texmf-dist/tex/latex/carlisle/scalefnt.sty)
?
(/usr/share/texmf-dist/tex/latex/base/fontenc.sty (/usr/share/texmf-dist/tex/latex/base/fontenc.sty
Package: fontenc 2021/04/29 v2.0v Standard LaTeX package Package: fontenc 2021/04/29 v2.0v Standard LaTeX package
) )
@@ -498,84 +501,84 @@ Package: geometry 2020/01/02 v5.9 Page Geometry
(/usr/share/texmf-dist/tex/generic/iftex/ifvtex.sty (/usr/share/texmf-dist/tex/generic/iftex/ifvtex.sty
Package: ifvtex 2019/10/25 v1.7 ifvtex legacy package. Use iftex instead. Package: ifvtex 2019/10/25 v1.7 ifvtex legacy package. Use iftex instead.
) )
\Gm@cnth=\count329 \Gm@cnth=\count325
\Gm@cntv=\count330 \Gm@cntv=\count326
\c@Gm@tempcnt=\count331 \c@Gm@tempcnt=\count327
\Gm@bindingoffset=\dimen197 \Gm@bindingoffset=\dimen191
\Gm@wd@mp=\dimen198 \Gm@wd@mp=\dimen192
\Gm@odd@mp=\dimen199 \Gm@odd@mp=\dimen193
\Gm@even@mp=\dimen256 \Gm@even@mp=\dimen194
\Gm@layoutwidth=\dimen257 \Gm@layoutwidth=\dimen195
\Gm@layoutheight=\dimen258 \Gm@layoutheight=\dimen196
\Gm@layouthoffset=\dimen259 \Gm@layouthoffset=\dimen197
\Gm@layoutvoffset=\dimen260 \Gm@layoutvoffset=\dimen198
\Gm@dimlist=\toks35 \Gm@dimlist=\toks35
) )
(/usr/share/texmf-dist/tex/latex/changepage/changepage.sty (/usr/share/texmf-dist/tex/latex/changepage/changepage.sty
Package: changepage 2009/10/20 v1.0c check page and change page layout Package: changepage 2009/10/20 v1.0c check page and change page layout
\c@cp@cntr=\count332 \c@cp@cntr=\count328
\cp@tempcnt=\count333 \cp@tempcnt=\count329
LaTeX Info: Redefining \checkoddpage on input line 59. LaTeX Info: Redefining \checkoddpage on input line 59.
) )
(/usr/share/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty (/usr/share/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty
Package: fancyhdr 2022/11/09 v4.1 Extensive control of page headers and footers Package: fancyhdr 2022/11/09 v4.1 Extensive control of page headers and footers
\f@nch@headwidth=\skip82 \f@nch@headwidth=\skip83
\f@nch@O@elh=\skip83 \f@nch@O@elh=\skip84
\f@nch@O@erh=\skip84 \f@nch@O@erh=\skip85
\f@nch@O@olh=\skip85 \f@nch@O@olh=\skip86
\f@nch@O@orh=\skip86 \f@nch@O@orh=\skip87
\f@nch@O@elf=\skip87 \f@nch@O@elf=\skip88
\f@nch@O@erf=\skip88 \f@nch@O@erf=\skip89
\f@nch@O@olf=\skip89 \f@nch@O@olf=\skip90
\f@nch@O@orf=\skip90 \f@nch@O@orf=\skip91
) )
(/usr/share/texmf-dist/tex/latex/natbib/natbib.sty (/usr/share/texmf-dist/tex/latex/natbib/natbib.sty
Package: natbib 2010/09/13 8.31b (PWD, AO) Package: natbib 2010/09/13 8.31b (PWD, AO)
\bibhang=\skip91 \bibhang=\skip92
\bibsep=\skip92 \bibsep=\skip93
LaTeX Info: Redefining \cite on input line 694. LaTeX Info: Redefining \cite on input line 694.
\c@NAT@ctr=\count334 \c@NAT@ctr=\count330
) )
(/usr/share/texmf-dist/tex/latex/tocloft/tocloft.sty (/usr/share/texmf-dist/tex/latex/tocloft/tocloft.sty
Package: tocloft 2017/08/31 v2.3i parameterised ToC, etc., typesetting Package: tocloft 2017/08/31 v2.3i parameterised ToC, etc., typesetting
Package tocloft Info: The document has chapter divisions on input line 51. Package tocloft Info: The document has chapter divisions on input line 51.
\cftparskip=\skip93 \cftparskip=\skip94
\cftbeforetoctitleskip=\skip94 \cftbeforetoctitleskip=\skip95
\cftaftertoctitleskip=\skip95 \cftaftertoctitleskip=\skip96
\cftbeforepartskip=\skip96 \cftbeforepartskip=\skip97
\cftpartnumwidth=\skip97 \cftpartnumwidth=\skip98
\cftpartindent=\skip98 \cftpartindent=\skip99
\cftbeforechapskip=\skip99 \cftbeforechapskip=\skip100
\cftchapindent=\skip100 \cftchapindent=\skip101
\cftchapnumwidth=\skip101 \cftchapnumwidth=\skip102
\cftbeforesecskip=\skip102 \cftbeforesecskip=\skip103
\cftsecindent=\skip103 \cftsecindent=\skip104
\cftsecnumwidth=\skip104 \cftsecnumwidth=\skip105
\cftbeforesubsecskip=\skip105 \cftbeforesubsecskip=\skip106
\cftsubsecindent=\skip106 \cftsubsecindent=\skip107
\cftsubsecnumwidth=\skip107 \cftsubsecnumwidth=\skip108
\cftbeforesubsubsecskip=\skip108 \cftbeforesubsubsecskip=\skip109
\cftsubsubsecindent=\skip109 \cftsubsubsecindent=\skip110
\cftsubsubsecnumwidth=\skip110 \cftsubsubsecnumwidth=\skip111
\cftbeforeparaskip=\skip111 \cftbeforeparaskip=\skip112
\cftparaindent=\skip112 \cftparaindent=\skip113
\cftparanumwidth=\skip113 \cftparanumwidth=\skip114
\cftbeforesubparaskip=\skip114 \cftbeforesubparaskip=\skip115
\cftsubparaindent=\skip115 \cftsubparaindent=\skip116
\cftsubparanumwidth=\skip116 \cftsubparanumwidth=\skip117
\cftbeforeloftitleskip=\skip117 \cftbeforeloftitleskip=\skip118
\cftafterloftitleskip=\skip118 \cftafterloftitleskip=\skip119
\cftbeforefigskip=\skip119 \cftbeforefigskip=\skip120
\cftfigindent=\skip120 \cftfigindent=\skip121
\cftfignumwidth=\skip121 \cftfignumwidth=\skip122
\c@lofdepth=\count335 \c@lofdepth=\count331
\c@lotdepth=\count336 \c@lotdepth=\count332
\cftbeforelottitleskip=\skip122 \cftbeforelottitleskip=\skip123
\cftafterlottitleskip=\skip123 \cftafterlottitleskip=\skip124
\cftbeforetabskip=\skip124 \cftbeforetabskip=\skip125
\cfttabindent=\skip125 \cfttabindent=\skip126
\cfttabnumwidth=\skip126 \cfttabnumwidth=\skip127
) )
\@indexfile=\write4 \@indexfile=\write4
\openout4 = `refman.idx'. \openout4 = `refman.idx'.
@@ -590,22 +593,21 @@ Package: caption 2023/08/05 v3.6o Customizing captions (AR)
(/usr/share/texmf-dist/tex/latex/caption/caption3.sty (/usr/share/texmf-dist/tex/latex/caption/caption3.sty
Package: caption3 2023/07/31 v2.4d caption3 kernel (AR) Package: caption3 2023/07/31 v2.4d caption3 kernel (AR)
\caption@tempdima=\dimen261 \caption@tempdima=\dimen199
\captionmargin=\dimen262 \captionmargin=\dimen256
\caption@leftmargin=\dimen263 \caption@leftmargin=\dimen257
\caption@rightmargin=\dimen264 \caption@rightmargin=\dimen258
\caption@width=\dimen265 \caption@width=\dimen259
\caption@indent=\dimen266 \caption@indent=\dimen260
\caption@parindent=\dimen267 \caption@parindent=\dimen261
\caption@hangindent=\dimen268 \caption@hangindent=\dimen262
Package caption Info: Standard document class detected. Package caption Info: Standard document class detected.
Package caption Info: french babel package is loaded.
) )
\c@caption@flags=\count337 \c@caption@flags=\count333
\c@continuedfloat=\count338 \c@continuedfloat=\count334
Package caption Info: changepage package is loaded. Package caption Info: changepage package is loaded.
\caption@adjustwidth@hsize=\dimen269 \caption@adjustwidth@hsize=\dimen263
\caption@adjustwidth@linewidth=\dimen270 \caption@adjustwidth@linewidth=\dimen264
Package caption Info: float package is loaded. Package caption Info: float package is loaded.
Package caption Info: longtable package is loaded. Package caption Info: longtable package is loaded.
@@ -625,9 +627,9 @@ Package: ltxcmds 2023-12-04 v1.26 LaTeX kernel commands for general use (HO)
Package: kvsetkeys 2022-10-05 v1.19 Key value parser (HO) Package: kvsetkeys 2022-10-05 v1.19 Key value parser (HO)
)) ))
\Etoc@toctoks=\toks36 \Etoc@toctoks=\toks36
\c@etoc@tocid=\count339 \c@etoc@tocid=\count335
\etoc@framed@titlebox=\box118 \etoc@framed@titlebox=\box121
\etoc@framed@contentsbox=\box119 \etoc@framed@contentsbox=\box122
) )
LaTeX Font Info: Trying to load font information for T1+phv on input line 18 LaTeX Font Info: Trying to load font information for T1+phv on input line 18
9. 9.
@@ -640,8 +642,8 @@ LaTeX Font Info: Font shape `T1/phv/m/n' will be
(/usr/share/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def (/usr/share/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
File: l3backend-pdftex.def 2024-02-20 L3 backend support: PDF output (pdfTeX) File: l3backend-pdftex.def 2024-02-20 L3 backend support: PDF output (pdfTeX)
\l__color_backend_stack_int=\count340 \l__color_backend_stack_int=\count336
\l__pdf_internal_box=\box120 \l__pdf_internal_box=\box123
) (./refman.aux) ) (./refman.aux)
\openout1 = `refman.aux'. \openout1 = `refman.aux'.
@@ -661,16 +663,16 @@ LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 189.
LaTeX Font Info: ... okay on input line 189. LaTeX Font Info: ... okay on input line 189.
(/usr/share/texmf-dist/tex/context/base/mkii/supp-pdf.mkii (/usr/share/texmf-dist/tex/context/base/mkii/supp-pdf.mkii
[Loading MPS to PDF converter (version 2006.09.02).] [Loading MPS to PDF converter (version 2006.09.02).]
\scratchcounter=\count341 \scratchcounter=\count337
\scratchdimen=\dimen271 \scratchdimen=\dimen265
\scratchbox=\box121 \scratchbox=\box124
\nofMPsegments=\count342 \nofMPsegments=\count338
\nofMParguments=\count343 \nofMParguments=\count339
\everyMPshowfont=\toks37 \everyMPshowfont=\toks37
\MPscratchCnt=\count344 \MPscratchCnt=\count340
\MPscratchDim=\dimen272 \MPscratchDim=\dimen266
\MPnumerator=\count345 \MPnumerator=\count341
\makeMPintoPDFobject=\count346 \makeMPintoPDFobject=\count342
\everyMPtoPDFconversion=\toks38 \everyMPtoPDFconversion=\toks38
) (/usr/share/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty ) (/usr/share/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty
Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf
@@ -681,19 +683,6 @@ Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4
File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Liv File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Liv
e e
)) ))
LaTeX Info: Redefining \degres on input line 189.
Package french.ldf Warning: Please load the "natbib" package
(french.ldf) BEFORE babel/french; reported on input line 189.
Package french.ldf Info: Setting StandardItemizeEnv=true for
(french.ldf) compatibility with enumitem package,
(french.ldf) reported on input line 189.
Package french.ldf Info: Setting StandardEnumerateEnv=true for
(french.ldf) compatibility with enumitem package,
(french.ldf) reported on input line 189.
LaTeX Info: Redefining \up on input line 189.
*geometry* driver: auto-detecting *geometry* driver: auto-detecting
*geometry* detected driver: pdftex *geometry* detected driver: pdftex
*geometry* verbose mode - [ preamble ] result: *geometry* verbose mode - [ preamble ] result:
@@ -769,164 +758,95 @@ LaTeX Font Info: Font shape `T1/phv/m/n' will be
(Font) scaled to size 6.29996pt on input line 204. (Font) scaled to size 6.29996pt on input line 204.
LaTeX Font Info: Font shape `T1/phv/b/n' will be LaTeX Font Info: Font shape `T1/phv/b/n' will be
(Font) scaled to size 6.29996pt on input line 204. (Font) scaled to size 6.29996pt on input line 204.
[1] [2 [1] [2] (./index.tex
Chapter 1.
]
Chapitre 1.
LaTeX Font Info: Font shape `T1/phv/m/n' will be LaTeX Font Info: Font shape `T1/phv/m/n' will be
(Font) scaled to size 18.66588pt on input line 207. (Font) scaled to size 18.66588pt on input line 1.
LaTeX Font Info: Font shape `T1/phv/b/n' will be LaTeX Font Info: Font shape `T1/phv/b/n' will be
(Font) scaled to size 18.66588pt on input line 207. (Font) scaled to size 18.66588pt on input line 1.
LaTeX Font Info: Font shape `T1/phv/b/n' will be LaTeX Font Info: Font shape `T1/phv/b/n' will be
(Font) scaled to size 22.39185pt on input line 207. (Font) scaled to size 22.39185pt on input line 1.
(./annotated.tex
LaTeX Font Info: Font shape `T1/phv/b/n' will be
(Font) scaled to size 12.9599pt on input line 1.
) [1 ) [1
] [2 ] [2
] ]
Chapitre 2. Chapter 2.
(./files.tex) [3] [4 (./annotated.tex
LaTeX Font Info: Font shape `T1/phv/b/n' will be
(Font) scaled to size 12.9599pt on input line 1.
) [3] [4
] ]
Chapitre 3. Chapter 3.
(./structessential__sdl.tex) (./structScore.tex) (./structVecteur.tex [5]) (./files.tex) [5] [6
[6]
Chapitre 4. ]
Chapter 4.
(./structessential__sdl.tex
LaTeX Font Info: Trying to load font information for TS1+phv on input line 6
.
(/usr/share/texmf-dist/tex/latex/psnfss/ts1phv.fd
File: ts1phv.fd 2020/03/25 scalable font definitions for TS1/phv.
)
LaTeX Font Info: Font shape `TS1/phv/m/n' will be
(Font) scaled to size 8.99994pt on input line 6.
) (./structScore.tex) (./structVecteur.tex) [7] [8
]
Chapter 5.
(./display_8h_source.tex (./display_8h_source.tex
LaTeX Font Info: Trying to load font information for T1+pcr on input line 4. LaTeX Font Info: Trying to load font information for T1+pcr on input line 4.
(/usr/share/texmf-dist/tex/latex/psnfss/t1pcr.fd (/usr/share/texmf-dist/tex/latex/psnfss/t1pcr.fd
File: t1pcr.fd 2001/06/04 font definitions for T1/pcr. File: t1pcr.fd 2001/06/04 font definitions for T1/pcr.
)) ))
(./function_8h_source.tex [7 (./function_8h_source.tex [9]) (./read_8h_source.tex) (./display_8c.tex <./disp
lay_8c__incl.pdf>
]) (./read_8h_source.tex) (./display_8c.tex <./display_8c__incl.pdf> <display_8c__incl.pdf, id=48, 1165.35374pt x 265.99374pt>
<display_8c__incl.pdf, id=41, 1165.35374pt x 265.99374pt>
File: display_8c__incl.pdf Graphic file (type pdf) File: display_8c__incl.pdf Graphic file (type pdf)
<use display_8c__incl.pdf> <use display_8c__incl.pdf>
Package pdftex.def Info: display_8c__incl.pdf used on input line 19. Package pdftex.def Info: display_8c__incl.pdf used on input line 20.
(pdftex.def) Requested size: 350.0pt x 79.88802pt. (pdftex.def) Requested size: 350.0pt x 79.88802pt.
[10]
LaTeX Font Info: Font shape `T1/phv/m/n' will be LaTeX Font Info: Font shape `T1/phv/m/n' will be
(Font) scaled to size 8.09995pt on input line 26. (Font) scaled to size 8.09995pt on input line 27.
LaTeX Font Info: Font shape `T1/phv/m/it' in size <9> not available LaTeX Font Info: Font shape `T1/phv/m/it' in size <9> not available
(Font) Font shape `T1/phv/m/sl' tried instead on input line 26. (Font) Font shape `T1/phv/m/sl' tried instead on input line 27.
LaTeX Font Info: Font shape `T1/phv/m/sl' will be LaTeX Font Info: Font shape `T1/phv/m/sl' will be
(Font) scaled to size 8.09995pt on input line 26. (Font) scaled to size 8.09995pt on input line 27.
LaTeX Font Info: Trying to load font information for TS1+phv on input line 2
6.
(/usr/share/texmf-dist/tex/latex/psnfss/ts1phv.fd
File: ts1phv.fd 2020/03/25 scalable font definitions for TS1/phv.
)
LaTeX Font Info: Font shape `TS1/phv/m/it' in size <9> not available LaTeX Font Info: Font shape `TS1/phv/m/it' in size <9> not available
(Font) Font shape `TS1/phv/m/sl' tried instead on input line 26. (Font) Font shape `TS1/phv/m/sl' tried instead on input line 27.
LaTeX Font Info: Font shape `TS1/phv/m/sl' will be LaTeX Font Info: Font shape `TS1/phv/m/sl' will be
(Font) scaled to size 8.09995pt on input line 26. (Font) scaled to size 8.09995pt on input line 27.
[8]
LaTeX Font Info: Font shape `T1/phv/b/n' will be LaTeX Font Info: Font shape `T1/phv/b/n' will be
(Font) scaled to size 10.79993pt on input line 39. (Font) scaled to size 10.79993pt on input line 44.
LaTeX Font Info: Font shape `T1/phv/m/n' will be LaTeX Font Info: Font shape `T1/phv/m/n' will be
(Font) scaled to size 7.19995pt on input line 43. (Font) scaled to size 7.19995pt on input line 51.
LaTeX Font Info: Font shape `T1/pcr/m/it' in size <8> not available LaTeX Font Info: Font shape `T1/pcr/m/it' in size <8> not available
(Font) Font shape `T1/pcr/m/sl' tried instead on input line 44. (Font) Font shape `T1/pcr/m/sl' tried instead on input line 52.
LaTeX Font Info: Font shape `TS1/phv/m/n' will be
(Font) scaled to size 8.99994pt on input line 48.
Underfull \hbox (badness 10000) detected at line 61
[][][]
[]
<./display_8c_a81a2b2da875550c614a407ec735ff9d9_icgraph.pdf>
<display_8c_a81a2b2da875550c614a407ec735ff9d9_icgraph.pdf, id=55, 313.17pt x 99
.37125pt>
File: display_8c_a81a2b2da875550c614a407ec735ff9d9_icgraph.pdf Graphic file (ty
pe pdf)
<use display_8c_a81a2b2da875550c614a407ec735ff9d9_icgraph.pdf>
Package pdftex.def Info: display_8c_a81a2b2da875550c614a407ec735ff9d9_icgraph.p
df used on input line 69.
(pdftex.def) Requested size: 312.0pt x 99.00406pt.
LaTeX Font Info: Font shape `T1/pcr/m/it' in size <7> not available LaTeX Font Info: Font shape `T1/pcr/m/it' in size <7> not available
(Font) Font shape `T1/pcr/m/sl' tried instead on input line 76. (Font) Font shape `T1/pcr/m/sl' tried instead on input line 52.
[9] ) (./function_8c.tex [11] [12]
Underfull \hbox (badness 10000) detected at line 95 Underfull \hbox (badness 10000) detected at line 82
[][][]
[]
Underfull \hbox (badness 10000) detected at line 113
[][][]
[]
Underfull \hbox (badness 10000) detected at line 131
[][][]
[]
[10] [11]
Underfull \hbox (badness 10000) detected at line 151
[][][]
[]
Underfull \hbox (badness 10000) detected at line 171
[][][]
[]
<./display_8c_a6f451a9d0fd4d2325d9f03d7cda4a189_cgraph.pdf>
<display_8c_a6f451a9d0fd4d2325d9f03d7cda4a189_cgraph.pdf, id=78, 313.17pt x 99.
37125pt>
File: display_8c_a6f451a9d0fd4d2325d9f03d7cda4a189_cgraph.pdf Graphic file (typ
e pdf)
<use display_8c_a6f451a9d0fd4d2325d9f03d7cda4a189_cgraph.pdf>
Package pdftex.def Info: display_8c_a6f451a9d0fd4d2325d9f03d7cda4a189_cgraph.pd
f used on input line 179.
(pdftex.def) Requested size: 312.0pt x 99.00406pt.
)
(./function_8c.tex <./function_8c__incl.pdf>
<function_8c__incl.pdf, id=86, 1093.08376pt x 265.99374pt>
File: function_8c__incl.pdf Graphic file (type pdf)
<use function_8c__incl.pdf>
Package pdftex.def Info: function_8c__incl.pdf used on input line 19.
(pdftex.def) Requested size: 350.0pt x 85.16843pt.
[12] [13]
Underfull \hbox (badness 10000) detected at line 71
[][][] [][][]
[] []
<./function_8c_ac51249b2f7941ca06e6a614e071dd444_cgraph.pdf> <./function_8c_ac51249b2f7941ca06e6a614e071dd444_cgraph.pdf>
<function_8c_ac51249b2f7941ca06e6a614e071dd444_cgraph.pdf, id=102, 234.8775pt x <function_8c_ac51249b2f7941ca06e6a614e071dd444_cgraph.pdf, id=72, 234.8775pt x
136.51pt> 136.51pt>
File: function_8c_ac51249b2f7941ca06e6a614e071dd444_cgraph.pdf Graphic file (ty File: function_8c_ac51249b2f7941ca06e6a614e071dd444_cgraph.pdf Graphic file (ty
pe pdf) pe pdf)
<use function_8c_ac51249b2f7941ca06e6a614e071dd444_cgraph.pdf> <use function_8c_ac51249b2f7941ca06e6a614e071dd444_cgraph.pdf>
Package pdftex.def Info: function_8c_ac51249b2f7941ca06e6a614e071dd444_cgraph.p Package pdftex.def Info: function_8c_ac51249b2f7941ca06e6a614e071dd444_cgraph.p
df used on input line 79. df used on input line 89.
(pdftex.def) Requested size: 234.0pt x 135.99933pt. (pdftex.def) Requested size: 234.0pt x 135.99933pt.
<./function_8c_ac51249b2f7941ca06e6a614e071dd444_icgraph.pdf> [13]
<function_8c_ac51249b2f7941ca06e6a614e071dd444_icgraph.pdf, id=110, 322.20375pt Underfull \hbox (badness 10000) detected at line 111
x 99.37125pt>
File: function_8c_ac51249b2f7941ca06e6a614e071dd444_icgraph.pdf Graphic file (t
ype pdf)
<use function_8c_ac51249b2f7941ca06e6a614e071dd444_icgraph.pdf>
Package pdftex.def Info: function_8c_ac51249b2f7941ca06e6a614e071dd444_icgraph.
pdf used on input line 87.
(pdftex.def) Requested size: 321.0pt x 99.00406pt.
[14]
Underfull \hbox (badness 10000) detected at line 107
[][][] [][][]
[] []
<./function_8c_a76df2bc0c692d3397837706a6852ac36_icgraph.pdf>
<function_8c_a76df2bc0c692d3397837706a6852ac36_icgraph.pdf, id=122, 350.30875pt
x 99.37125pt>
File: function_8c_a76df2bc0c692d3397837706a6852ac36_icgraph.pdf Graphic file (t
ype pdf)
<use function_8c_a76df2bc0c692d3397837706a6852ac36_icgraph.pdf>
Package pdftex.def Info: function_8c_a76df2bc0c692d3397837706a6852ac36_icgraph.
pdf used on input line 115.
(pdftex.def) Requested size: 349.0pt x 99.00708pt.
Underfull \hbox (badness 10000) detected at line 133 Underfull \hbox (badness 10000) detected at line 133
[][][] [][][]
@@ -937,146 +857,83 @@ Underfull \hbox (badness 10000) detected at line 153
[][][] [][][]
[] []
[15] [14]
Underfull \hbox (badness 10000) detected at line 183 Underfull \hbox (badness 10000) detected at line 185
[][][] [][][]
[] []
<./function_8c_a2387ddb7cde4f9d45198b0c131a60878_cgraph.pdf> [15]
<function_8c_a2387ddb7cde4f9d45198b0c131a60878_cgraph.pdf, id=135, 474.77374pt Underfull \hbox (badness 10000) detected at line 219
x 210.7875pt> [][][]
File: function_8c_a2387ddb7cde4f9d45198b0c131a60878_cgraph.pdf Graphic file (ty []
pe pdf)
<use function_8c_a2387ddb7cde4f9d45198b0c131a60878_cgraph.pdf>
Package pdftex.def Info: function_8c_a2387ddb7cde4f9d45198b0c131a60878_cgraph.p Underfull \hbox (badness 10000) detected at line 241
df used on input line 191.
(pdftex.def) Requested size: 350.0pt x 155.39815pt.
[16]
Underfull \hbox (badness 10000) detected at line 211
[][][] [][][]
[] []
<./function_8c_ac155bb183b0c26d19758d8d065baf14f_cgraph.pdf> <./function_8c_ac155bb183b0c26d19758d8d065baf14f_cgraph.pdf>
<function_8c_ac155bb183b0c26d19758d8d065baf14f_cgraph.pdf, id=147, 313.17pt x 1 <function_8c_ac155bb183b0c26d19758d8d065baf14f_cgraph.pdf, id=91, 313.17pt x 13
36.51pt> 6.51pt>
File: function_8c_ac155bb183b0c26d19758d8d065baf14f_cgraph.pdf Graphic file (ty File: function_8c_ac155bb183b0c26d19758d8d065baf14f_cgraph.pdf Graphic file (ty
pe pdf) pe pdf)
<use function_8c_ac155bb183b0c26d19758d8d065baf14f_cgraph.pdf> <use function_8c_ac155bb183b0c26d19758d8d065baf14f_cgraph.pdf>
Package pdftex.def Info: function_8c_ac155bb183b0c26d19758d8d065baf14f_cgraph.p Package pdftex.def Info: function_8c_ac155bb183b0c26d19758d8d065baf14f_cgraph.p
df used on input line 219. df used on input line 248.
(pdftex.def) Requested size: 312.0pt x 136.00557pt. (pdftex.def) Requested size: 312.0pt x 136.00557pt.
<./function_8c_ac155bb183b0c26d19758d8d065baf14f_icgraph.pdf>
<function_8c_ac155bb183b0c26d19758d8d065baf14f_icgraph.pdf, id=155, 229.85875pt
x 99.37125pt>
File: function_8c_ac155bb183b0c26d19758d8d065baf14f_icgraph.pdf Graphic file (t
ype pdf)
<use function_8c_ac155bb183b0c26d19758d8d065baf14f_icgraph.pdf>
Package pdftex.def Info: function_8c_ac155bb183b0c26d19758d8d065baf14f_icgraph.
pdf used on input line 227.
(pdftex.def) Requested size: 229.0pt x 99.00557pt.
Underfull \hbox (badness 10000) detected at line 249 Underfull \hbox (badness 10000) detected at line 270
[][][]
[]
[16]
Underfull \hbox (badness 10000) detected at line 294
[][][]
[]
Underfull \hbox (badness 10000) detected at line 316
[][][]
[]
Underfull \hbox (badness 10000) detected at line 336
[][][] [][][]
[] []
<./function_8c_a618903fbb7302d98ef0f3e2e6b35b99a_icgraph.pdf>
<function_8c_a618903fbb7302d98ef0f3e2e6b35b99a_icgraph.pdf, id=163, 228.855pt x
99.37125pt>
File: function_8c_a618903fbb7302d98ef0f3e2e6b35b99a_icgraph.pdf Graphic file (t
ype pdf)
<use function_8c_a618903fbb7302d98ef0f3e2e6b35b99a_icgraph.pdf>
Package pdftex.def Info: function_8c_a618903fbb7302d98ef0f3e2e6b35b99a_icgraph.
pdf used on input line 257.
(pdftex.def) Requested size: 228.0pt x 99.00406pt.
[17] [17]
Underfull \hbox (badness 10000) detected at line 281 Underfull \hbox (badness 10000) detected at line 356
[][][] [][][]
[] []
<./function_8c_ac93ca31d854d91eedf3babda7511407d_cgraph.pdf>
<function_8c_ac93ca31d854d91eedf3babda7511407d_cgraph.pdf, id=176, 242.9075pt x Underfull \hbox (badness 10000) detected at line 376
136.51pt>
File: function_8c_ac93ca31d854d91eedf3babda7511407d_cgraph.pdf Graphic file (ty
pe pdf)
<use function_8c_ac93ca31d854d91eedf3babda7511407d_cgraph.pdf>
Package pdftex.def Info: function_8c_ac93ca31d854d91eedf3babda7511407d_cgraph.p
df used on input line 289.
(pdftex.def) Requested size: 242.0pt x 135.99933pt.
<./function_8c_ac93ca31d854d91eedf3babda7511407d_icgraph.pdf>
<function_8c_ac93ca31d854d91eedf3babda7511407d_icgraph.pdf, id=184, 228.855pt x
99.37125pt>
File: function_8c_ac93ca31d854d91eedf3babda7511407d_icgraph.pdf Graphic file (t
ype pdf)
<use function_8c_ac93ca31d854d91eedf3babda7511407d_icgraph.pdf>
Package pdftex.def Info: function_8c_ac93ca31d854d91eedf3babda7511407d_icgraph.
pdf used on input line 297.
(pdftex.def) Requested size: 228.0pt x 99.00406pt.
[18]
Underfull \hbox (badness 10000) detected at line 317
[][][] [][][]
[] []
<./function_8c_a5b10e69716d92eadf2ed0b3942cb9d4d_icgraph.pdf> ) (./main_8c.tex [18]) (./read_8c.tex [19]
<function_8c_a5b10e69716d92eadf2ed0b3942cb9d4d_icgraph.pdf, id=196, 412.54124pt Underfull \hbox (badness 10000) detected at line 66
x 137.51375pt>
File: function_8c_a5b10e69716d92eadf2ed0b3942cb9d4d_icgraph.pdf Graphic file (t
ype pdf)
<use function_8c_a5b10e69716d92eadf2ed0b3942cb9d4d_icgraph.pdf>
Package pdftex.def Info: function_8c_a5b10e69716d92eadf2ed0b3942cb9d4d_icgraph.
pdf used on input line 325.
(pdftex.def) Requested size: 350.0pt x 116.669pt.
[19]
Underfull \hbox (badness 10000) detected at line 343
[][][] [][][]
[] []
<./function_8c_a51c9ba7a24383f1b20dcedfcb570aab5_icgraph.pdf> [20]) [21] [22
<function_8c_a51c9ba7a24383f1b20dcedfcb570aab5_icgraph.pdf, id=208, 252.945pt x
99.37125pt>
File: function_8c_a51c9ba7a24383f1b20dcedfcb570aab5_icgraph.pdf Graphic file (t
ype pdf)
<use function_8c_a51c9ba7a24383f1b20dcedfcb570aab5_icgraph.pdf>
Package pdftex.def Info: function_8c_a51c9ba7a24383f1b20dcedfcb570aab5_icgraph.
pdf used on input line 351.
(pdftex.def) Requested size: 252.0pt x 99.00253pt.
) (./main_8c.tex <./main_8c__incl.pdf>
<main_8c__incl.pdf, id=216, 634.37pt x 265.99374pt>
File: main_8c__incl.pdf Graphic file (type pdf)
<use main_8c__incl.pdf>
Package pdftex.def Info: main_8c__incl.pdf used on input line 15.
(pdftex.def) Requested size: 350.0pt x 146.7597pt.
) (./read_8c.tex [20] <./read_8c__incl.pdf>
<read_8c__incl.pdf, id=228, 613.29124pt x 210.7875pt>
File: read_8c__incl.pdf Graphic file (type pdf)
<use read_8c__incl.pdf>
Package pdftex.def Info: read_8c__incl.pdf used on input line 11.
(pdftex.def) Requested size: 350.0pt x 120.29486pt.
[21]
Underfull \hbox (badness 10000) detected at line 48
[][][]
[]
) [22] (./refman.ind ]
LaTeX Font Info: Font shape `T1/phv/m/n' will be No file refman.ind.
(Font) scaled to size 22.39185pt on input line 1. (./refman.aux)
[23
]) (./refman.aux)
*********** ***********
LaTeX2e <2023-11-01> patch level 1 LaTeX2e <2023-11-01> patch level 1
L3 programming layer <2024-02-20> L3 programming layer <2024-02-20>
*********** ***********
) )
Here is how much of TeX's memory you used: Here is how much of TeX's memory you used:
13389 strings out of 476047 12777 strings out of 476076
222396 string characters out of 5792625 207335 string characters out of 5793776
1942187 words of memory out of 5000000 1950187 words of memory out of 5000000
35219 multiletter control sequences out of 15000+600000 34595 multiletter control sequences out of 15000+600000
613279 words of font info for 105 fonts, out of 8000000 for 9000 611649 words of font info for 105 fonts, out of 8000000 for 9000
14 hyphenation exceptions out of 8191 14 hyphenation exceptions out of 8191
101i,15n,117p,614b,653s stack positions out of 10000i,1000n,20000p,200000b,200000s 101i,16n,117p,656b,607s stack positions out of 10000i,1000n,20000p,200000b,200000s
</usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi10.pfb></usr/share/ </usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi10.pfb></usr/share/
texmf-dist/fonts/type1/public/amsfonts/cm/cmsy10.pfb></usr/share/texmf-dist/fon texmf-dist/fonts/type1/public/amsfonts/cm/cmsy10.pfb></usr/share/texmf-dist/fon
ts/type1/public/amsfonts/cm/cmsy8.pfb></usr/share/texmf-dist/fonts/type1/urw/co ts/type1/public/amsfonts/cm/cmsy8.pfb></usr/share/texmf-dist/fonts/type1/urw/co
@@ -1085,10 +942,10 @@ r/share/texmf-dist/fonts/type1/urw/courier/ucrro8a.pfb></usr/share/texmf-dist/f
onts/type1/urw/helvetic/uhvb8a.pfb></usr/share/texmf-dist/fonts/type1/urw/helve onts/type1/urw/helvetic/uhvb8a.pfb></usr/share/texmf-dist/fonts/type1/urw/helve
tic/uhvb8ac.pfb></usr/share/texmf-dist/fonts/type1/urw/helvetic/uhvr8a.pfb></us tic/uhvb8ac.pfb></usr/share/texmf-dist/fonts/type1/urw/helvetic/uhvr8a.pfb></us
r/share/texmf-dist/fonts/type1/urw/helvetic/uhvro8a.pfb> r/share/texmf-dist/fonts/type1/urw/helvetic/uhvro8a.pfb>
Output written on refman.pdf (27 pages, 239124 bytes). Output written on refman.pdf (26 pages, 152060 bytes).
PDF statistics: PDF statistics:
291 PDF objects out of 1000 (max. 8388607) 167 PDF objects out of 1000 (max. 8388607)
186 compressed objects within 2 object streams 105 compressed objects within 2 object streams
0 named destinations out of 1000 (max. 500000) 0 named destinations out of 1000 (max. 500000)
86 words of extra memory for PDF output out of 10000 (max. 10000000) 16 words of extra memory for PDF output out of 10000 (max. 10000000)

Binary file not shown.

View File

@@ -204,6 +204,7 @@
\clearemptydoublepage \clearemptydoublepage
\pagenumbering{arabic} \pagenumbering{arabic}
%--- Begin generated contents --- %--- Begin generated contents ---
\input{index}
\chapter{Index des structures de données} \chapter{Index des structures de données}
\input{annotated} \input{annotated}
\chapter{Index des fichiers} \chapter{Index des fichiers}

View File

@@ -1,42 +1,45 @@
\@ifundefined {etoctocstyle}{\let \etoc@startlocaltoc \@gobble \let \etoc@settocdepth \@gobble \let \etoc@depthtag \@gobble \let \etoc@setlocaltop \@gobble }{} \@ifundefined {etoctocstyle}{\let \etoc@startlocaltoc \@gobble \let \etoc@settocdepth \@gobble \let \etoc@depthtag \@gobble \let \etoc@setlocaltop \@gobble }{}
\babel@toc {french}{}\relax \babel@toc {nil}{}\relax
\contentsline {chapter}{\numberline {1}Index des structures de données}{1}{}% \contentsline {chapter}{\numberline {1}Main Test}{1}{}%
\contentsline {section}{\numberline {1.1}Structures de données}{1}{}% \contentsline {chapter}{\numberline {2}Index des structures de données}{3}{}%
\contentsline {chapter}{\numberline {2}Index des fichiers}{3}{}% \contentsline {section}{\numberline {2.1}Structures de données}{3}{}%
\contentsline {section}{\numberline {2.1}Liste des fichiers}{3}{}% \contentsline {chapter}{\numberline {3}Index des fichiers}{5}{}%
\contentsline {chapter}{\numberline {3}Documentation des structures de données}{5}{}% \contentsline {section}{\numberline {3.1}Liste des fichiers}{5}{}%
\contentsline {section}{\numberline {3.1}Référence de la structure essential\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}\_\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}sdl}{5}{}% \contentsline {chapter}{\numberline {4}Documentation des structures de données}{7}{}%
\contentsline {section}{\numberline {3.2}Référence de la structure Score}{5}{}% \contentsline {section}{\numberline {4.1}Référence de la structure essential\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}\_\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}sdl}{7}{}%
\contentsline {section}{\numberline {3.3}Référence de la structure Vecteur}{6}{}% \contentsline {section}{\numberline {4.2}Référence de la structure Score}{7}{}%
\contentsline {chapter}{\numberline {4}Documentation des fichiers}{7}{}% \contentsline {section}{\numberline {4.3}Référence de la structure Vecteur}{7}{}%
\contentsline {section}{\numberline {4.1}display.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}h}{7}{}% \contentsline {chapter}{\numberline {5}Documentation des fichiers}{9}{}%
\contentsline {section}{\numberline {4.2}function.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}h}{7}{}% \contentsline {section}{\numberline {5.1}display.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}h}{9}{}%
\contentsline {section}{\numberline {4.3}read.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}h}{8}{}% \contentsline {section}{\numberline {5.2}function.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}h}{9}{}%
\contentsline {section}{\numberline {4.4}Référence du fichier display.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}c}{8}{}% \contentsline {section}{\numberline {5.3}read.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}h}{10}{}%
\contentsline {subsection}{\numberline {4.4.1}Documentation des fonctions}{9}{}% \contentsline {section}{\numberline {5.4}Référence du fichier display.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}c}{10}{}%
\contentsline {subsubsection}{\numberline {4.4.1.1}displayImage()}{9}{}% \contentsline {subsection}{\numberline {5.4.1}Description détaillée}{11}{}%
\contentsline {subsubsection}{\numberline {4.4.1.2}displayTextSDL()}{10}{}% \contentsline {subsection}{\numberline {5.4.2}Documentation des fonctions}{11}{}%
\contentsline {subsubsection}{\numberline {4.4.1.3}getMaxSize()}{10}{}% \contentsline {subsubsection}{\numberline {5.4.2.1}backgroundDisplay()}{11}{}%
\contentsline {subsubsection}{\numberline {4.4.1.4}initSDL()}{10}{}% \contentsline {section}{\numberline {5.5}Référence du fichier function.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}c}{12}{}%
\contentsline {subsubsection}{\numberline {4.4.1.5}screenDisplay()}{11}{}% \contentsline {subsection}{\numberline {5.5.1}Description détaillée}{13}{}%
\contentsline {subsubsection}{\numberline {4.4.1.6}screenDisplayGameSDL()}{12}{}% \contentsline {subsection}{\numberline {5.5.2}Documentation des fonctions}{13}{}%
\contentsline {section}{\numberline {4.5}Référence du fichier function.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}c}{12}{}% \contentsline {subsubsection}{\numberline {5.5.2.1}blockBox()}{13}{}%
\contentsline {subsection}{\numberline {4.5.1}Description détaillée}{14}{}% \contentsline {subsubsection}{\numberline {5.5.2.2}canIGoDirection()}{13}{}%
\contentsline {subsection}{\numberline {4.5.2}Documentation des fonctions}{14}{}% \contentsline {subsubsection}{\numberline {5.5.2.3}creatArea2D()}{14}{}%
\contentsline {subsubsection}{\numberline {4.5.2.1}blockBox()}{14}{}% \contentsline {subsubsection}{\numberline {5.5.2.4}free2D()}{14}{}%
\contentsline {subsubsection}{\numberline {4.5.2.2}canIGoDirection()}{14}{}% \contentsline {subsubsection}{\numberline {5.5.2.5}inEditorLoop()}{15}{}%
\contentsline {subsubsection}{\numberline {4.5.2.3}creatArea2D()}{15}{}% \contentsline {subsubsection}{\numberline {5.5.2.6}inGameLoop()}{15}{}%
\contentsline {subsubsection}{\numberline {4.5.2.4}free2D()}{15}{}% \contentsline {subsubsection}{\numberline {5.5.2.7}islose()}{16}{}%
\contentsline {subsubsection}{\numberline {4.5.2.5}inGameLoop()}{16}{}% \contentsline {subsubsection}{\numberline {5.5.2.8}isWin()}{16}{}%
\contentsline {subsubsection}{\numberline {4.5.2.6}islose()}{16}{}% \contentsline {subsubsection}{\numberline {5.5.2.9}move()}{17}{}%
\contentsline {subsubsection}{\numberline {4.5.2.7}isWin()}{17}{}% \contentsline {subsubsection}{\numberline {5.5.2.10}nullScore()}{17}{}%
\contentsline {subsubsection}{\numberline {4.5.2.8}move()}{18}{}% \contentsline {subsubsection}{\numberline {5.5.2.11}plusVect()}{17}{}%
\contentsline {subsubsection}{\numberline {4.5.2.9}plusVect()}{19}{}% \contentsline {subsubsection}{\numberline {5.5.2.12}timeToText()}{18}{}%
\contentsline {subsubsection}{\numberline {4.5.2.10}timeToText()}{19}{}% \contentsline {subsubsection}{\numberline {5.5.2.13}titleScreen()}{18}{}%
\contentsline {section}{\numberline {4.6}Référence du fichier main.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}c}{20}{}% \contentsline {subsubsection}{\numberline {5.5.2.14}winOrLoseLoop()}{18}{}%
\contentsline {subsection}{\numberline {4.6.1}Description détaillée}{21}{}% \contentsline {section}{\numberline {5.6}Référence du fichier main.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}c}{19}{}%
\contentsline {section}{\numberline {4.7}Référence du fichier read.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}c}{21}{}% \contentsline {subsection}{\numberline {5.6.1}Description détaillée}{19}{}%
\contentsline {subsection}{\numberline {4.7.1}Description détaillée}{21}{}% \contentsline {section}{\numberline {5.7}Référence du fichier read.\discretionary {\mbox {\scriptsize $\hookleftarrow $}}{}{}c}{19}{}%
\contentsline {subsection}{\numberline {4.7.2}Documentation des fonctions}{21}{}% \contentsline {subsection}{\numberline {5.7.1}Description détaillée}{20}{}%
\contentsline {subsubsection}{\numberline {4.7.2.1}fileToTab2D()}{21}{}% \contentsline {subsection}{\numberline {5.7.2}Documentation des fonctions}{20}{}%
\contentsline {chapter}{Index}{23}{}% \contentsline {subsubsection}{\numberline {5.7.2.1}countCustomMaps()}{20}{}%
\contentsline {subsubsection}{\numberline {5.7.2.2}fileToTab2D()}{20}{}%
\contentsline {subsubsection}{\numberline {5.7.2.3}generatorMenu()}{20}{}%
\contentsline {subsubsection}{\numberline {5.7.2.4}save\_grid\_to\_file()}{21}{}%

14
rapport/main_page.md Normal file
View File

@@ -0,0 +1,14 @@
# Main Test
ewuewiewhf
wef
ewuewiewhf
ewuewiewhfewf
wefe:Lw
dewfewfewfew
f
ewuewiewhfewf
fw
ewuewiewhfewfewf
f
wf