parent
ee9a3161ee
commit
7d6f9c270c
@ -1,69 +1,105 @@
|
||||
#include "Fonctions.h"
|
||||
|
||||
int Ouverture(int tNoCarte[], int tAge[], int tPointsCarte[], int tCarteActive[], int tNbActivitesJour[], int tDate[], int tMax, int *pasAct)
|
||||
{
|
||||
int pasMembres;
|
||||
pasMembres = OuvertureMembres(tNoCarte, tAge, tPointsCarte, tCarteActive, tMax);
|
||||
*pasAct = OuvertureActivitesJour(tNbActivitesJour, tDate, tMax);
|
||||
return pasMembres;
|
||||
}
|
||||
|
||||
int OuvertureMembres(int tNoCarte[], int tAge[], int tPointsCarte[], int tCarteActive[], int tMax)
|
||||
{
|
||||
int i = 0;
|
||||
int noCarte, age, pointsCarte, carteActive;
|
||||
FILE *flot;
|
||||
flot = fopen("membres.don", "r");
|
||||
if (flot == NULL)
|
||||
{
|
||||
printf("Problème d'ouverture du fichier membres.don en lecture.\n");
|
||||
return -1;
|
||||
}
|
||||
fscanf(flot, "%d%d%d%d", &noCarte, &age, &pointsCarte, &carteActive);
|
||||
while (!feof(flot))
|
||||
{
|
||||
if (i == tMax)
|
||||
{
|
||||
printf("Tableau plein.\n");
|
||||
fclose(flot);
|
||||
return -1;
|
||||
}
|
||||
tNoCarte[i] = noCarte;
|
||||
tAge[i] = age;
|
||||
tPointsCarte[i] = pointsCarte;
|
||||
tCarteActive[i] = carteActive;
|
||||
fscanf(flot, "%d%d%d%d", &noCarte, &age, &pointsCarte, &carteActive);
|
||||
i++;
|
||||
}
|
||||
fclose(flot);
|
||||
return i;
|
||||
}
|
||||
|
||||
int OuvertureActivitesJour(int tNbActivitesJour[], int tDate[], int tMax)
|
||||
{
|
||||
int i = 0;
|
||||
int date, nbActivitesJour;
|
||||
FILE *jour;
|
||||
jour = fopen("ActivitesJour.don", "r");
|
||||
if (jour == NULL)
|
||||
{
|
||||
printf("Problème d'ouverture du fichier ActivitesJour.don en lecture.\n");
|
||||
return -1;
|
||||
}
|
||||
fscanf(jour, "%d%d", &date, &nbActivitesJour);
|
||||
while (!feof(jour))
|
||||
{
|
||||
if (i == tMax)
|
||||
{
|
||||
printf("Tableau plein.\n");
|
||||
fclose(jour);
|
||||
return -1;
|
||||
}
|
||||
tDate[i] = date;
|
||||
tNbActivitesJour[i] = nbActivitesJour;
|
||||
fscanf(jour, "%d%d", &date, &nbActivitesJour);
|
||||
i++;
|
||||
}
|
||||
fclose(jour);
|
||||
return i;
|
||||
/**
|
||||
* \file Ouverture.c
|
||||
* \brief Contient les fonctions d'ouverture des fichiers
|
||||
* \author
|
||||
*/
|
||||
#include "Fonctions.h"
|
||||
|
||||
/**
|
||||
* \brief Appelle les fonctions d'ouverture
|
||||
* \author
|
||||
* \param tNoCarte tableau contenant les numéros de toutes les cartes
|
||||
* \param tAge tableau contenant les âges des membres
|
||||
* \param tPointsCarte tableau qui contient le nombre de points restants sur chaque carte
|
||||
* \param tCarteActive tableau qui contient l'état de chaque carte
|
||||
* \param tNbActivitesJour tableau qui contient le nombre d'activité par jour
|
||||
* \param tDate tableau qui contient les dates
|
||||
* \param tMax taille physique des tableaux
|
||||
* \param pasAct pointeur contenant la taille logique des tableaux des activités
|
||||
* \return la taille logique des tableaux des membres
|
||||
*/
|
||||
int Ouverture(int tNoCarte[], int tAge[], int tPointsCarte[], int tCarteActive[], int tNbActivitesJour[], int tDate[], int tMax, int *pasAct)
|
||||
{
|
||||
int pasMembres;
|
||||
pasMembres = OuvertureMembres(tNoCarte, tAge, tPointsCarte, tCarteActive, tMax);
|
||||
*pasAct = OuvertureActivitesJour(tNbActivitesJour, tDate, tMax);
|
||||
return pasMembres;
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Charge les données du fichier membres.don dans des tableaux
|
||||
* \author
|
||||
* \param tNoCarte tableau contenant les numéros de toutes les cartes
|
||||
* \param tAge tableau contenant les âges des membres
|
||||
* \param tPointsCarte tableau qui contient le nombre de points restants sur chaque carte
|
||||
* \param tCarteActive tableau qui contient l'état de chaque carte
|
||||
* \param tMax taille physique des tableaux
|
||||
* \return la taille logique des tableaux
|
||||
*/
|
||||
int OuvertureMembres(int tNoCarte[], int tAge[], int tPointsCarte[], int tCarteActive[], int tMax)
|
||||
{
|
||||
int i = 0;
|
||||
int noCarte, age, pointsCarte, carteActive;
|
||||
FILE *flot;
|
||||
flot = fopen("membres.don", "r");
|
||||
if (flot == NULL)
|
||||
{
|
||||
printf("Problème d'ouverture du fichier membres.don en lecture.\n");
|
||||
return -1;
|
||||
}
|
||||
fscanf(flot, "%d%d%d%d", &noCarte, &age, &pointsCarte, &carteActive);
|
||||
while (!feof(flot))
|
||||
{
|
||||
if (i == tMax)
|
||||
{
|
||||
printf("Tableau plein.\n");
|
||||
fclose(flot);
|
||||
return -1;
|
||||
}
|
||||
tNoCarte[i] = noCarte;
|
||||
tAge[i] = age;
|
||||
tPointsCarte[i] = pointsCarte;
|
||||
tCarteActive[i] = carteActive;
|
||||
fscanf(flot, "%d%d%d%d", &noCarte, &age, &pointsCarte, &carteActive);
|
||||
i++;
|
||||
}
|
||||
fclose(flot);
|
||||
return i;
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Charge les données du fichier ActivitesJour.don dans des tableaux
|
||||
* \author
|
||||
* \param tNbActivitesJour tableau qui contient le nombre d'activité par jour
|
||||
* \param tDate tableau qui contient les dates
|
||||
* \param tMax taille physique des tableaux
|
||||
* \return la taille logique des tableaux
|
||||
*/
|
||||
int OuvertureActivitesJour(int tNbActivitesJour[], int tDate[], int tMax)
|
||||
{
|
||||
int i = 0;
|
||||
int date, nbActivitesJour;
|
||||
FILE *jour;
|
||||
jour = fopen("ActivitesJour.don", "r");
|
||||
if (jour == NULL)
|
||||
{
|
||||
printf("Problème d'ouverture du fichier ActivitesJour.don en lecture.\n");
|
||||
return -1;
|
||||
}
|
||||
fscanf(jour, "%d%d", &date, &nbActivitesJour);
|
||||
while (!feof(jour))
|
||||
{
|
||||
if (i == tMax)
|
||||
{
|
||||
printf("Tableau plein.\n");
|
||||
fclose(jour);
|
||||
return -1;
|
||||
}
|
||||
tDate[i] = date;
|
||||
tNbActivitesJour[i] = nbActivitesJour;
|
||||
fscanf(jour, "%d%d", &date, &nbActivitesJour);
|
||||
i++;
|
||||
}
|
||||
fclose(jour);
|
||||
return i;
|
||||
}
|
@ -1,29 +1,49 @@
|
||||
#include "Fonctions.h"
|
||||
|
||||
int Sauvegarde(int tNoCarte[], int tAge[], int tPointsCarte[], int tCarteActive[], int tNbActivitesJour[], int tDate[], int nbElem, int pasAct)
|
||||
{
|
||||
int i, j;
|
||||
FILE *flot, *jour;
|
||||
flot = fopen("membres.don", "w");
|
||||
jour = fopen("ActivitesJour.don", "w");
|
||||
if (flot == NULL)
|
||||
{
|
||||
printf("Problème d'ouverture du fichier membres.don en écriture.\n");
|
||||
return -1;
|
||||
}
|
||||
if (jour == NULL)
|
||||
{
|
||||
printf("Problème d'ouverture du fichier ActivitesJour.don en écriture.\n");
|
||||
return -1;
|
||||
}
|
||||
for (i = 0; i < (nbElem - 1); i++)
|
||||
{
|
||||
fprintf(flot, "\t%d\t%d\t\t%d\t\t%d\n", tNoCarte[i], tAge[i], tPointsCarte[i], tCarteActive[i]);
|
||||
}
|
||||
for (j = 0; j < (nbElem - 1); j++)
|
||||
{
|
||||
fprintf(jour, "%d\t\t%d\n", tDate[j], tNbActivitesJour[j]);
|
||||
}
|
||||
fclose(jour);
|
||||
fclose(flot);
|
||||
/**
|
||||
* \file Sauvegarde.c
|
||||
* \brief Contient la fonction de sauvegarde
|
||||
* \author
|
||||
*/
|
||||
|
||||
#include "Fonctions.h"
|
||||
|
||||
/**
|
||||
* \brief Sauvegarde les nouvelles données dans les fichiers
|
||||
* \author
|
||||
* \param tNoCarte tableau contenant les numéros de toutes les cartes
|
||||
* \param tAge tableau contenant les âges des membres
|
||||
* \param tPointsCarte tableau qui contient le nombre de points restants sur chaque carte
|
||||
* \param tCarteActive tableau qui contient l'état de chaque carte
|
||||
* \param tNbActivitesJour tableau qui contient le nombre d'activité par jour
|
||||
* \param tDate tableau qui contient les dates
|
||||
* \param nbElem taille logique des tableaux tNoCarte, tAge, tPointsCarte et tCarteActive
|
||||
* \param pasAct taille logique des tableaux tNbActivitesJour et tDate
|
||||
* \return le code d'erreur : -1 en cas d'erreur et 0 sinon
|
||||
*/
|
||||
int Sauvegarde(int tNoCarte[], int tAge[], int tPointsCarte[], int tCarteActive[], int tNbActivitesJour[], int tDate[], int nbElem, int pasAct)
|
||||
{
|
||||
int i, j;
|
||||
FILE *flot, *jour;
|
||||
flot = fopen("membres.don", "w");
|
||||
jour = fopen("ActivitesJour.don", "w");
|
||||
if (flot == NULL)
|
||||
{
|
||||
printf("Problème d'ouverture du fichier membres.don en écriture.\n");
|
||||
return -1;
|
||||
}
|
||||
if (jour == NULL)
|
||||
{
|
||||
printf("Problème d'ouverture du fichier ActivitesJour.don en écriture.\n");
|
||||
return -1;
|
||||
}
|
||||
for (i = 0; i < (nbElem - 1); i++)
|
||||
{
|
||||
fprintf(flot, "\t%d\t%d\t\t%d\t\t%d\n", tNoCarte[i], tAge[i], tPointsCarte[i], tCarteActive[i]);
|
||||
}
|
||||
for (j = 0; j < (nbElem - 1); j++)
|
||||
{
|
||||
fprintf(jour, "%d\t\t%d\n", tDate[j], tNbActivitesJour[j]);
|
||||
}
|
||||
fclose(jour);
|
||||
fclose(flot);
|
||||
return 0;
|
||||
}
|
@ -0,0 +1,295 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.9.1"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>SAE S1.01: Ouverture.c File Reference</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="jquery.js"></script>
|
||||
<script type="text/javascript" src="dynsections.js"></script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
|
||||
<div id="titlearea">
|
||||
<table cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">SAE S1.01
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.9.1 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search','.html');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
<!-- window showing the filter options -->
|
||||
<div id="MSearchSelectWindow"
|
||||
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||
onkeydown="return searchBox.OnSearchSelectKey(event)">
|
||||
</div>
|
||||
|
||||
<!-- iframe showing the search results (closed by default) -->
|
||||
<div id="MSearchResultsWindow">
|
||||
<iframe src="javascript:void(0)" frameborder="0"
|
||||
name="MSearchResults" id="MSearchResults">
|
||||
</iframe>
|
||||
</div>
|
||||
|
||||
</div><!-- top -->
|
||||
<div class="header">
|
||||
<div class="summary">
|
||||
<a href="#func-members">Functions</a> </div>
|
||||
<div class="headertitle">
|
||||
<div class="title">Ouverture.c File Reference</div> </div>
|
||||
</div><!--header-->
|
||||
<div class="contents">
|
||||
|
||||
<p>Contient les fonctions d'ouverture des fichiers.
|
||||
<a href="#details">More...</a></p>
|
||||
<div class="textblock"><code>#include "Fonctions.h"</code><br />
|
||||
</div><div class="textblock"><div class="dynheader">
|
||||
Include dependency graph for Ouverture.c:</div>
|
||||
<div class="dyncontent">
|
||||
<div class="center"><img src="Ouverture_8c__incl.png" border="0" usemap="#aOuverture_8c" alt=""/></div>
|
||||
<map name="aOuverture_8c" id="aOuverture_8c">
|
||||
<area shape="rect" title="Contient les fonctions d'ouverture des fichiers." alt="" coords="36,5,135,32"/>
|
||||
<area shape="rect" href="Fonctions_8h_source.html" title=" " alt="" coords="37,80,133,107"/>
|
||||
<area shape="rect" title=" " alt="" coords="5,155,72,181"/>
|
||||
<area shape="rect" title=" " alt="" coords="97,155,167,181"/>
|
||||
</map>
|
||||
</div>
|
||||
</div><table class="memberdecls">
|
||||
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="func-members"></a>
|
||||
Functions</h2></td></tr>
|
||||
<tr class="memitem:a4313075598422b9874d0cf21c5d68066"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="Ouverture_8c.html#a4313075598422b9874d0cf21c5d68066">Ouverture</a> (int tNoCarte[], int tAge[], int tPointsCarte[], int tCarteActive[], int tNbActivitesJour[], int tDate[], int tMax, int *pasAct)</td></tr>
|
||||
<tr class="memdesc:a4313075598422b9874d0cf21c5d68066"><td class="mdescLeft"> </td><td class="mdescRight">Appelle les fonctions d'ouverture. <a href="Ouverture_8c.html#a4313075598422b9874d0cf21c5d68066">More...</a><br /></td></tr>
|
||||
<tr class="separator:a4313075598422b9874d0cf21c5d68066"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:a8acd5a59675e4b759120c62e8cd7e08f"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="Ouverture_8c.html#a8acd5a59675e4b759120c62e8cd7e08f">OuvertureMembres</a> (int tNoCarte[], int tAge[], int tPointsCarte[], int tCarteActive[], int tMax)</td></tr>
|
||||
<tr class="memdesc:a8acd5a59675e4b759120c62e8cd7e08f"><td class="mdescLeft"> </td><td class="mdescRight">Charge les données du fichier membres.don dans des tableaux. <a href="Ouverture_8c.html#a8acd5a59675e4b759120c62e8cd7e08f">More...</a><br /></td></tr>
|
||||
<tr class="separator:a8acd5a59675e4b759120c62e8cd7e08f"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:a9b4925d0af4ae4f0ce2a8fd9448a26f8"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="Ouverture_8c.html#a9b4925d0af4ae4f0ce2a8fd9448a26f8">OuvertureActivitesJour</a> (int tNbActivitesJour[], int tDate[], int tMax)</td></tr>
|
||||
<tr class="memdesc:a9b4925d0af4ae4f0ce2a8fd9448a26f8"><td class="mdescLeft"> </td><td class="mdescRight">Charge les données du fichier ActivitesJour.don dans des tableaux. <a href="Ouverture_8c.html#a9b4925d0af4ae4f0ce2a8fd9448a26f8">More...</a><br /></td></tr>
|
||||
<tr class="separator:a9b4925d0af4ae4f0ce2a8fd9448a26f8"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
</table>
|
||||
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
|
||||
<div class="textblock"><p>Contient les fonctions d'ouverture des fichiers. </p>
|
||||
<dl class="section author"><dt>Author</dt><dd></dd></dl>
|
||||
</div><h2 class="groupheader">Function Documentation</h2>
|
||||
<a id="a4313075598422b9874d0cf21c5d68066"></a>
|
||||
<h2 class="memtitle"><span class="permalink"><a href="#a4313075598422b9874d0cf21c5d68066">◆ </a></span>Ouverture()</h2>
|
||||
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">int Ouverture </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype">int </td>
|
||||
<td class="paramname"><em>tNoCarte</em>[], </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype">int </td>
|
||||
<td class="paramname"><em>tAge</em>[], </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype">int </td>
|
||||
<td class="paramname"><em>tPointsCarte</em>[], </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype">int </td>
|
||||
<td class="paramname"><em>tCarteActive</em>[], </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype">int </td>
|
||||
<td class="paramname"><em>tNbActivitesJour</em>[], </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype">int </td>
|
||||
<td class="paramname"><em>tDate</em>[], </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype">int </td>
|
||||
<td class="paramname"><em>tMax</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype">int * </td>
|
||||
<td class="paramname"><em>pasAct</em> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>)</td>
|
||||
<td></td><td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div><div class="memdoc">
|
||||
|
||||
<p>Appelle les fonctions d'ouverture. </p>
|
||||
<dl class="section author"><dt>Author</dt><dd></dd></dl>
|
||||
<dl class="params"><dt>Parameters</dt><dd>
|
||||
<table class="params">
|
||||
<tr><td class="paramname">tNoCarte</td><td>tableau contenant les numéros de toutes les cartes </td></tr>
|
||||
<tr><td class="paramname">tAge</td><td>tableau contenant les âges des membres </td></tr>
|
||||
<tr><td class="paramname">tPointsCarte</td><td>tableau qui contient le nombre de points restants sur chaque carte </td></tr>
|
||||
<tr><td class="paramname">tCarteActive</td><td>tableau qui contient l'état de chaque carte </td></tr>
|
||||
<tr><td class="paramname">tNbActivitesJour</td><td>tableau qui contient le nombre d'activité par jour </td></tr>
|
||||
<tr><td class="paramname">tDate</td><td>tableau qui contient les dates </td></tr>
|
||||
<tr><td class="paramname">tMax</td><td>taille physique des tableaux </td></tr>
|
||||
<tr><td class="paramname">pasAct</td><td>pointeur contenant la taille logique des tableaux des activités </td></tr>
|
||||
</table>
|
||||
</dd>
|
||||
</dl>
|
||||
<dl class="section return"><dt>Returns</dt><dd>la taille logique des tableaux des membres </dd></dl>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a id="a9b4925d0af4ae4f0ce2a8fd9448a26f8"></a>
|
||||
<h2 class="memtitle"><span class="permalink"><a href="#a9b4925d0af4ae4f0ce2a8fd9448a26f8">◆ </a></span>OuvertureActivitesJour()</h2>
|
||||
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">int OuvertureActivitesJour </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype">int </td>
|
||||
<td class="paramname"><em>tNbActivitesJour</em>[], </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype">int </td>
|
||||
<td class="paramname"><em>tDate</em>[], </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype">int </td>
|
||||
<td class="paramname"><em>tMax</em> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>)</td>
|
||||
<td></td><td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div><div class="memdoc">
|
||||
|
||||
<p>Charge les données du fichier ActivitesJour.don dans des tableaux. </p>
|
||||
<dl class="section author"><dt>Author</dt><dd></dd></dl>
|
||||
<dl class="params"><dt>Parameters</dt><dd>
|
||||
<table class="params">
|
||||
<tr><td class="paramname">tNbActivitesJour</td><td>tableau qui contient le nombre d'activité par jour </td></tr>
|
||||
<tr><td class="paramname">tDate</td><td>tableau qui contient les dates </td></tr>
|
||||
<tr><td class="paramname">tMax</td><td>taille physique des tableaux </td></tr>
|
||||
</table>
|
||||
</dd>
|
||||
</dl>
|
||||
<dl class="section return"><dt>Returns</dt><dd>la taille logique des tableaux </dd></dl>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a id="a8acd5a59675e4b759120c62e8cd7e08f"></a>
|
||||
<h2 class="memtitle"><span class="permalink"><a href="#a8acd5a59675e4b759120c62e8cd7e08f">◆ </a></span>OuvertureMembres()</h2>
|
||||
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">int OuvertureMembres </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype">int </td>
|
||||
<td class="paramname"><em>tNoCarte</em>[], </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype">int </td>
|
||||
<td class="paramname"><em>tAge</em>[], </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype">int </td>
|
||||
<td class="paramname"><em>tPointsCarte</em>[], </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype">int </td>
|
||||
<td class="paramname"><em>tCarteActive</em>[], </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype">int </td>
|
||||
<td class="paramname"><em>tMax</em> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>)</td>
|
||||
<td></td><td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div><div class="memdoc">
|
||||
|
||||
<p>Charge les données du fichier membres.don dans des tableaux. </p>
|
||||
<dl class="section author"><dt>Author</dt><dd></dd></dl>
|
||||
<dl class="params"><dt>Parameters</dt><dd>
|
||||
<table class="params">
|
||||
<tr><td class="paramname">tNoCarte</td><td>tableau contenant les numéros de toutes les cartes </td></tr>
|
||||
<tr><td class="paramname">tAge</td><td>tableau contenant les âges des membres </td></tr>
|
||||
<tr><td class="paramname">tPointsCarte</td><td>tableau qui contient le nombre de points restants sur chaque carte </td></tr>
|
||||
<tr><td class="paramname">tCarteActive</td><td>tableau qui contient l'état de chaque carte </td></tr>
|
||||
<tr><td class="paramname">tMax</td><td>taille physique des tableaux </td></tr>
|
||||
</table>
|
||||
</dd>
|
||||
</dl>
|
||||
<dl class="section return"><dt>Returns</dt><dd>la taille logique des tableaux </dd></dl>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated by <a href="https://www.doxygen.org/index.html"><img class="footer" src="doxygen.svg" width="104" height="31" alt="doxygen"/></a> 1.9.1
|
||||
</small></address>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1 @@
|
||||
258b834269b641ffd85dbb748f79184b
|
After Width: | Height: | Size: 6.1 KiB |
@ -0,0 +1,183 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
||||
<meta name="generator" content="Doxygen 1.9.1"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>SAE S1.01: Sauvegarde.c File Reference</title>
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="jquery.js"></script>
|
||||
<script type="text/javascript" src="dynsections.js"></script>
|
||||
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||
<script type="text/javascript" src="search/search.js"></script>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
|
||||
<div id="titlearea">
|
||||
<table cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr style="height: 56px;">
|
||||
<td id="projectalign" style="padding-left: 0.5em;">
|
||||
<div id="projectname">SAE S1.01
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<!-- end header part -->
|
||||
<!-- Generated by Doxygen 1.9.1 -->
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
var searchBox = new SearchBox("searchBox", "search",false,'Search','.html');
|
||||
/* @license-end */
|
||||
</script>
|
||||
<script type="text/javascript" src="menudata.js"></script>
|
||||
<script type="text/javascript" src="menu.js"></script>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
$(function() {
|
||||
initMenu('',true,false,'search.php','Search');
|
||||
$(document).ready(function() { init_search(); });
|
||||
});
|
||||
/* @license-end */</script>
|
||||
<div id="main-nav"></div>
|
||||
<!-- window showing the filter options -->
|
||||
<div id="MSearchSelectWindow"
|
||||
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||
onkeydown="return searchBox.OnSearchSelectKey(event)">
|
||||
</div>
|
||||
|
||||
<!-- iframe showing the search results (closed by default) -->
|
||||
<div id="MSearchResultsWindow">
|
||||
<iframe src="javascript:void(0)" frameborder="0"
|
||||
name="MSearchResults" id="MSearchResults">
|
||||
</iframe>
|
||||
</div>
|
||||
|
||||
</div><!-- top -->
|
||||
<div class="header">
|
||||
<div class="summary">
|
||||
<a href="#func-members">Functions</a> </div>
|
||||
<div class="headertitle">
|
||||
<div class="title">Sauvegarde.c File Reference</div> </div>
|
||||
</div><!--header-->
|
||||
<div class="contents">
|
||||
|
||||
<p>Contient la fonction de sauvegarde.
|
||||
<a href="#details">More...</a></p>
|
||||
<div class="textblock"><code>#include "Fonctions.h"</code><br />
|
||||
</div><div class="textblock"><div class="dynheader">
|
||||
Include dependency graph for Sauvegarde.c:</div>
|
||||
<div class="dyncontent">
|
||||
<div class="center"><img src="Sauvegarde_8c__incl.png" border="0" usemap="#aSauvegarde_8c" alt=""/></div>
|
||||
<map name="aSauvegarde_8c" id="aSauvegarde_8c">
|
||||
<area shape="rect" title="Contient la fonction de sauvegarde." alt="" coords="30,5,141,32"/>
|
||||
<area shape="rect" href="Fonctions_8h_source.html" title=" " alt="" coords="37,80,133,107"/>
|
||||
<area shape="rect" title=" " alt="" coords="5,155,72,181"/>
|
||||
<area shape="rect" title=" " alt="" coords="97,155,167,181"/>
|
||||
</map>
|
||||
</div>
|
||||
</div><table class="memberdecls">
|
||||
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="func-members"></a>
|
||||
Functions</h2></td></tr>
|
||||
<tr class="memitem:acdc20fb9b7c96c421ea9204df14f333b"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="Sauvegarde_8c.html#acdc20fb9b7c96c421ea9204df14f333b">Sauvegarde</a> (int tNoCarte[], int tAge[], int tPointsCarte[], int tCarteActive[], int tNbActivitesJour[], int tDate[], int nbElem, int pasAct)</td></tr>
|
||||
<tr class="memdesc:acdc20fb9b7c96c421ea9204df14f333b"><td class="mdescLeft"> </td><td class="mdescRight">Sauvegarde les nouvelles données dans les fichiers. <a href="Sauvegarde_8c.html#acdc20fb9b7c96c421ea9204df14f333b">More...</a><br /></td></tr>
|
||||
<tr class="separator:acdc20fb9b7c96c421ea9204df14f333b"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
</table>
|
||||
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
|
||||
<div class="textblock"><p>Contient la fonction de sauvegarde. </p>
|
||||
<dl class="section author"><dt>Author</dt><dd></dd></dl>
|
||||
</div><h2 class="groupheader">Function Documentation</h2>
|
||||
<a id="acdc20fb9b7c96c421ea9204df14f333b"></a>
|
||||
<h2 class="memtitle"><span class="permalink"><a href="#acdc20fb9b7c96c421ea9204df14f333b">◆ </a></span>Sauvegarde()</h2>
|
||||
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">int Sauvegarde </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype">int </td>
|
||||
<td class="paramname"><em>tNoCarte</em>[], </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype">int </td>
|
||||
<td class="paramname"><em>tAge</em>[], </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype">int </td>
|
||||
<td class="paramname"><em>tPointsCarte</em>[], </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype">int </td>
|
||||
<td class="paramname"><em>tCarteActive</em>[], </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype">int </td>
|
||||
<td class="paramname"><em>tNbActivitesJour</em>[], </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype">int </td>
|
||||
<td class="paramname"><em>tDate</em>[], </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype">int </td>
|
||||
<td class="paramname"><em>nbElem</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="paramkey"></td>
|
||||
<td></td>
|
||||
<td class="paramtype">int </td>
|
||||
<td class="paramname"><em>pasAct</em> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>)</td>
|
||||
<td></td><td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div><div class="memdoc">
|
||||
|
||||
<p>Sauvegarde les nouvelles données dans les fichiers. </p>
|
||||
<dl class="section author"><dt>Author</dt><dd></dd></dl>
|
||||
<dl class="params"><dt>Parameters</dt><dd>
|
||||
<table class="params">
|
||||
<tr><td class="paramname">tNoCarte</td><td>tableau contenant les numéros de toutes les cartes </td></tr>
|
||||
<tr><td class="paramname">tAge</td><td>tableau contenant les âges des membres </td></tr>
|
||||
<tr><td class="paramname">tPointsCarte</td><td>tableau qui contient le nombre de points restants sur chaque carte </td></tr>
|
||||
<tr><td class="paramname">tCarteActive</td><td>tableau qui contient l'état de chaque carte </td></tr>
|
||||
<tr><td class="paramname">tNbActivitesJour</td><td>tableau qui contient le nombre d'activité par jour </td></tr>
|
||||
<tr><td class="paramname">tDate</td><td>tableau qui contient les dates </td></tr>
|
||||
<tr><td class="paramname">nbElem</td><td>taille logique des tableaux tNoCarte, tAge, tPointsCarte et tCarteActive </td></tr>
|
||||
<tr><td class="paramname">pasAct</td><td>taille logique des tableaux tNbActivitesJour et tDate </td></tr>
|
||||
</table>
|
||||
</dd>
|
||||
</dl>
|
||||
<dl class="section return"><dt>Returns</dt><dd>le code d'erreur : -1 en cas d'erreur et 0 sinon </dd></dl>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated by <a href="https://www.doxygen.org/index.html"><img class="footer" src="doxygen.svg" width="104" height="31" alt="doxygen"/></a> 1.9.1
|
||||
</small></address>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1 @@
|
||||
c550b88a96a661fb3ee8341d86cf7fea
|
After Width: | Height: | Size: 6.5 KiB |
@ -1,5 +1,7 @@
|
||||
var searchData=
|
||||
[
|
||||
['rechercheadherent_18',['RechercheAdherent',['../GestionPoints_8c.html#a962baf9af48dd1fb9d3373a7188d885a',1,'GestionPoints.c']]],
|
||||
['rechercheajoutadherent_19',['RechercheAjoutAdherent',['../GestionAdherents_8c.html#acdbfc37cf00b38c3cd2e90e7342e07b0',1,'GestionAdherents.c']]]
|
||||
['ouverture_18',['Ouverture',['../Ouverture_8c.html#a4313075598422b9874d0cf21c5d68066',1,'Ouverture.c']]],
|
||||
['ouverture_2ec_19',['Ouverture.c',['../Ouverture_8c.html',1,'']]],
|
||||
['ouvertureactivitesjour_20',['OuvertureActivitesJour',['../Ouverture_8c.html#a9b4925d0af4ae4f0ce2a8fd9448a26f8',1,'Ouverture.c']]],
|
||||
['ouverturemembres_21',['OuvertureMembres',['../Ouverture_8c.html#a8acd5a59675e4b759120c62e8cd7e08f',1,'Ouverture.c']]]
|
||||
];
|
||||
|
@ -1,5 +1,5 @@
|
||||
var searchData=
|
||||
[
|
||||
['sae_201_2e01_20_2d_20implémentation_20d_27un_20besoin_20client_20',['SAE 1.01 - Implémentation d'un besoin client',['../index.html',1,'']]],
|
||||
['supprimeradherent_21',['SupprimerAdherent',['../GestionAdherents_8c.html#a3b14af71fb9afa3153f8486fc90a27fe',1,'GestionAdherents.c']]]
|
||||
['rechercheadherent_22',['RechercheAdherent',['../GestionPoints_8c.html#a962baf9af48dd1fb9d3373a7188d885a',1,'GestionPoints.c']]],
|
||||
['rechercheajoutadherent_23',['RechercheAjoutAdherent',['../GestionAdherents_8c.html#acdbfc37cf00b38c3cd2e90e7342e07b0',1,'GestionAdherents.c']]]
|
||||
];
|
||||
|
@ -0,0 +1,37 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head><title></title>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta name="generator" content="Doxygen 1.9.1"/>
|
||||
<link rel="stylesheet" type="text/css" href="search.css"/>
|
||||
<script type="text/javascript" src="all_7.js"></script>
|
||||
<script type="text/javascript" src="search.js"></script>
|
||||
</head>
|
||||
<body class="SRPage">
|
||||
<div id="SRIndex">
|
||||
<div class="SRStatus" id="Loading">Loading...</div>
|
||||
<div id="SRResults"></div>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
createResults();
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div class="SRStatus" id="Searching">Searching...</div>
|
||||
<div class="SRStatus" id="NoMatches">No Matches</div>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
document.getElementById("Loading").style.display="none";
|
||||
document.getElementById("NoMatches").style.display="none";
|
||||
var searchResults = new SearchResults("searchResults");
|
||||
searchResults.Search();
|
||||
window.addEventListener("message", function(event) {
|
||||
if (event.data == "take_focus") {
|
||||
var elem = searchResults.NavNext(0);
|
||||
if (elem) elem.focus();
|
||||
}
|
||||
});
|
||||
/* @license-end */
|
||||
</script>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,7 @@
|
||||
var searchData=
|
||||
[
|
||||
['sae_201_2e01_20_2d_20implémentation_20d_27un_20besoin_20client_24',['SAE 1.01 - Implémentation d'un besoin client',['../index.html',1,'']]],
|
||||
['sauvegarde_25',['Sauvegarde',['../Sauvegarde_8c.html#acdc20fb9b7c96c421ea9204df14f333b',1,'Sauvegarde.c']]],
|
||||
['sauvegarde_2ec_26',['Sauvegarde.c',['../Sauvegarde_8c.html',1,'']]],
|
||||
['supprimeradherent_27',['SupprimerAdherent',['../GestionAdherents_8c.html#a3b14af71fb9afa3153f8486fc90a27fe',1,'GestionAdherents.c']]]
|
||||
];
|
@ -1,4 +1,4 @@
|
||||
var searchData=
|
||||
[
|
||||
['affichage_2ec_22',['Affichage.c',['../Affichage_8c.html',1,'']]]
|
||||
['affichage_2ec_28',['Affichage.c',['../Affichage_8c.html',1,'']]]
|
||||
];
|
||||
|
@ -1,6 +1,6 @@
|
||||
var searchData=
|
||||
[
|
||||
['gestionadherents_2ec_23',['GestionAdherents.c',['../GestionAdherents_8c.html',1,'']]],
|
||||
['gestionpoints_2ec_24',['GestionPoints.c',['../GestionPoints_8c.html',1,'']]],
|
||||
['global_2ec_25',['Global.c',['../Global_8c.html',1,'']]]
|
||||
['gestionadherents_2ec_29',['GestionAdherents.c',['../GestionAdherents_8c.html',1,'']]],
|
||||
['gestionpoints_2ec_30',['GestionPoints.c',['../GestionPoints_8c.html',1,'']]],
|
||||
['global_2ec_31',['Global.c',['../Global_8c.html',1,'']]]
|
||||
];
|
||||
|
@ -1,4 +1,4 @@
|
||||
var searchData=
|
||||
[
|
||||
['menus_2ec_26',['Menus.c',['../Menus_8c.html',1,'']]]
|
||||
['menus_2ec_32',['Menus.c',['../Menus_8c.html',1,'']]]
|
||||
];
|
||||
|
@ -0,0 +1,37 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head><title></title>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta name="generator" content="Doxygen 1.9.1"/>
|
||||
<link rel="stylesheet" type="text/css" href="search.css"/>
|
||||
<script type="text/javascript" src="files_3.js"></script>
|
||||
<script type="text/javascript" src="search.js"></script>
|
||||
</head>
|
||||
<body class="SRPage">
|
||||
<div id="SRIndex">
|
||||
<div class="SRStatus" id="Loading">Loading...</div>
|
||||
<div id="SRResults"></div>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
createResults();
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div class="SRStatus" id="Searching">Searching...</div>
|
||||
<div class="SRStatus" id="NoMatches">No Matches</div>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
document.getElementById("Loading").style.display="none";
|
||||
document.getElementById("NoMatches").style.display="none";
|
||||
var searchResults = new SearchResults("searchResults");
|
||||
searchResults.Search();
|
||||
window.addEventListener("message", function(event) {
|
||||
if (event.data == "take_focus") {
|
||||
var elem = searchResults.NavNext(0);
|
||||
if (elem) elem.focus();
|
||||
}
|
||||
});
|
||||
/* @license-end */
|
||||
</script>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,4 @@
|
||||
var searchData=
|
||||
[
|
||||
['ouverture_2ec_33',['Ouverture.c',['../Ouverture_8c.html',1,'']]]
|
||||
];
|
@ -0,0 +1,37 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head><title></title>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta name="generator" content="Doxygen 1.9.1"/>
|
||||
<link rel="stylesheet" type="text/css" href="search.css"/>
|
||||
<script type="text/javascript" src="files_4.js"></script>
|
||||
<script type="text/javascript" src="search.js"></script>
|
||||
</head>
|
||||
<body class="SRPage">
|
||||
<div id="SRIndex">
|
||||
<div class="SRStatus" id="Loading">Loading...</div>
|
||||
<div id="SRResults"></div>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
createResults();
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div class="SRStatus" id="Searching">Searching...</div>
|
||||
<div class="SRStatus" id="NoMatches">No Matches</div>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
document.getElementById("Loading").style.display="none";
|
||||
document.getElementById("NoMatches").style.display="none";
|
||||
var searchResults = new SearchResults("searchResults");
|
||||
searchResults.Search();
|
||||
window.addEventListener("message", function(event) {
|
||||
if (event.data == "take_focus") {
|
||||
var elem = searchResults.NavNext(0);
|
||||
if (elem) elem.focus();
|
||||
}
|
||||
});
|
||||
/* @license-end */
|
||||
</script>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,4 @@
|
||||
var searchData=
|
||||
[
|
||||
['sauvegarde_2ec_34',['Sauvegarde.c',['../Sauvegarde_8c.html',1,'']]]
|
||||
];
|
@ -1,10 +1,10 @@
|
||||
var searchData=
|
||||
[
|
||||
['affichage1adherent_27',['Affichage1Adherent',['../Affichage_8c.html#a8ed766fdd76779bbe0746df063d51139',1,'Affichage.c']]],
|
||||
['affichagenbadherents_28',['AffichageNbAdherents',['../Affichage_8c.html#a05b33583505e7780f97c8123dcbed088',1,'Affichage.c']]],
|
||||
['affichagenbentreestotal_29',['AffichageNbEntreesTotal',['../Affichage_8c.html#aeb4e09b2fc0dade4b91f4f8daa4c1058',1,'Affichage.c']]],
|
||||
['affichagenbentreestousjour_30',['AffichageNbEntreesTousJour',['../Affichage_8c.html#a6f40a5861f94c7ae1f822d365fabc31b',1,'Affichage.c']]],
|
||||
['affichagetousadherents_31',['AffichageTousAdherents',['../Affichage_8c.html#a690d8ce18b1c7a6f9364a69dfcb63d72',1,'Affichage.c']]],
|
||||
['ajoutadherent_32',['AjoutAdherent',['../GestionAdherents_8c.html#af8eea7baf132404b92b98198338908f4',1,'GestionAdherents.c']]],
|
||||
['ajoutpoints_33',['AjoutPoints',['../GestionPoints_8c.html#a5cf26807e80ee8fcac5e821b46809bbd',1,'GestionPoints.c']]]
|
||||
['affichage1adherent_35',['Affichage1Adherent',['../Affichage_8c.html#a8ed766fdd76779bbe0746df063d51139',1,'Affichage.c']]],
|
||||
['affichagenbadherents_36',['AffichageNbAdherents',['../Affichage_8c.html#a05b33583505e7780f97c8123dcbed088',1,'Affichage.c']]],
|
||||
['affichagenbentreestotal_37',['AffichageNbEntreesTotal',['../Affichage_8c.html#aeb4e09b2fc0dade4b91f4f8daa4c1058',1,'Affichage.c']]],
|
||||
['affichagenbentreestousjour_38',['AffichageNbEntreesTousJour',['../Affichage_8c.html#a6f40a5861f94c7ae1f822d365fabc31b',1,'Affichage.c']]],
|
||||
['affichagetousadherents_39',['AffichageTousAdherents',['../Affichage_8c.html#a690d8ce18b1c7a6f9364a69dfcb63d72',1,'Affichage.c']]],
|
||||
['ajoutadherent_40',['AjoutAdherent',['../GestionAdherents_8c.html#af8eea7baf132404b92b98198338908f4',1,'GestionAdherents.c']]],
|
||||
['ajoutpoints_41',['AjoutPoints',['../GestionPoints_8c.html#a5cf26807e80ee8fcac5e821b46809bbd',1,'GestionPoints.c']]]
|
||||
];
|
||||
|
@ -1,5 +1,5 @@
|
||||
var searchData=
|
||||
[
|
||||
['choixmenu_34',['ChoixMenu',['../Menus_8c.html#a4a461883584bb148c3218a3baae98052',1,'Menus.c']]],
|
||||
['choixmenuaffichage_35',['ChoixMenuAffichage',['../Menus_8c.html#a4020852cea19461acb61f7241e5cf08c',1,'Menus.c']]]
|
||||
['choixmenu_42',['ChoixMenu',['../Menus_8c.html#a4a461883584bb148c3218a3baae98052',1,'Menus.c']]],
|
||||
['choixmenuaffichage_43',['ChoixMenuAffichage',['../Menus_8c.html#a4020852cea19461acb61f7241e5cf08c',1,'Menus.c']]]
|
||||
];
|
||||
|
@ -1,4 +1,4 @@
|
||||
var searchData=
|
||||
[
|
||||
['debitactivitee_36',['DebitActivitee',['../GestionPoints_8c.html#a771731f11ee5621d4d2e8062f83fd74d',1,'GestionPoints.c']]]
|
||||
['debitactivitee_44',['DebitActivitee',['../GestionPoints_8c.html#a771731f11ee5621d4d2e8062f83fd74d',1,'GestionPoints.c']]]
|
||||
];
|
||||
|
@ -1,4 +1,4 @@
|
||||
var searchData=
|
||||
[
|
||||
['gestionmenus_37',['GestionMenus',['../Global_8c.html#ab8c440dfeb6ad2dab49469c202665646',1,'Global.c']]]
|
||||
['gestionmenus_45',['GestionMenus',['../Global_8c.html#ab8c440dfeb6ad2dab49469c202665646',1,'Global.c']]]
|
||||
];
|
||||
|
@ -1,5 +1,5 @@
|
||||
var searchData=
|
||||
[
|
||||
['modificationactivationcarte_38',['ModificationActivationCarte',['../GestionAdherents_8c.html#a95c82e9e32b0b51928303f0d444e553a',1,'GestionAdherents.c']]],
|
||||
['modificationage_39',['ModificationAge',['../GestionAdherents_8c.html#a3b801c8bc5a5f29f6ef0262a1168687a',1,'GestionAdherents.c']]]
|
||||
['modificationactivationcarte_46',['ModificationActivationCarte',['../GestionAdherents_8c.html#a95c82e9e32b0b51928303f0d444e553a',1,'GestionAdherents.c']]],
|
||||
['modificationage_47',['ModificationAge',['../GestionAdherents_8c.html#a3b801c8bc5a5f29f6ef0262a1168687a',1,'GestionAdherents.c']]]
|
||||
];
|
||||
|
@ -1,5 +1,6 @@
|
||||
var searchData=
|
||||
[
|
||||
['rechercheadherent_40',['RechercheAdherent',['../GestionPoints_8c.html#a962baf9af48dd1fb9d3373a7188d885a',1,'GestionPoints.c']]],
|
||||
['rechercheajoutadherent_41',['RechercheAjoutAdherent',['../GestionAdherents_8c.html#acdbfc37cf00b38c3cd2e90e7342e07b0',1,'GestionAdherents.c']]]
|
||||
['ouverture_48',['Ouverture',['../Ouverture_8c.html#a4313075598422b9874d0cf21c5d68066',1,'Ouverture.c']]],
|
||||
['ouvertureactivitesjour_49',['OuvertureActivitesJour',['../Ouverture_8c.html#a9b4925d0af4ae4f0ce2a8fd9448a26f8',1,'Ouverture.c']]],
|
||||
['ouverturemembres_50',['OuvertureMembres',['../Ouverture_8c.html#a8acd5a59675e4b759120c62e8cd7e08f',1,'Ouverture.c']]]
|
||||
];
|
||||
|
@ -1,4 +1,5 @@
|
||||
var searchData=
|
||||
[
|
||||
['supprimeradherent_42',['SupprimerAdherent',['../GestionAdherents_8c.html#a3b14af71fb9afa3153f8486fc90a27fe',1,'GestionAdherents.c']]]
|
||||
['rechercheadherent_51',['RechercheAdherent',['../GestionPoints_8c.html#a962baf9af48dd1fb9d3373a7188d885a',1,'GestionPoints.c']]],
|
||||
['rechercheajoutadherent_52',['RechercheAjoutAdherent',['../GestionAdherents_8c.html#acdbfc37cf00b38c3cd2e90e7342e07b0',1,'GestionAdherents.c']]]
|
||||
];
|
||||
|
@ -0,0 +1,37 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head><title></title>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta name="generator" content="Doxygen 1.9.1"/>
|
||||
<link rel="stylesheet" type="text/css" href="search.css"/>
|
||||
<script type="text/javascript" src="functions_7.js"></script>
|
||||
<script type="text/javascript" src="search.js"></script>
|
||||
</head>
|
||||
<body class="SRPage">
|
||||
<div id="SRIndex">
|
||||
<div class="SRStatus" id="Loading">Loading...</div>
|
||||
<div id="SRResults"></div>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
createResults();
|
||||
/* @license-end */
|
||||
</script>
|
||||
<div class="SRStatus" id="Searching">Searching...</div>
|
||||
<div class="SRStatus" id="NoMatches">No Matches</div>
|
||||
<script type="text/javascript">
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
document.getElementById("Loading").style.display="none";
|
||||
document.getElementById("NoMatches").style.display="none";
|
||||
var searchResults = new SearchResults("searchResults");
|
||||
searchResults.Search();
|
||||
window.addEventListener("message", function(event) {
|
||||
if (event.data == "take_focus") {
|
||||
var elem = searchResults.NavNext(0);
|
||||
if (elem) elem.focus();
|
||||
}
|
||||
});
|
||||
/* @license-end */
|
||||
</script>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,5 @@
|
||||
var searchData=
|
||||
[
|
||||
['sauvegarde_53',['Sauvegarde',['../Sauvegarde_8c.html#acdc20fb9b7c96c421ea9204df14f333b',1,'Sauvegarde.c']]],
|
||||
['supprimeradherent_54',['SupprimerAdherent',['../GestionAdherents_8c.html#a3b14af71fb9afa3153f8486fc90a27fe',1,'GestionAdherents.c']]]
|
||||
];
|
@ -1,4 +1,4 @@
|
||||
var searchData=
|
||||
[
|
||||
['sae_201_2e01_20_2d_20implémentation_20d_27un_20besoin_20client_43',['SAE 1.01 - Implémentation d'un besoin client',['../index.html',1,'']]]
|
||||
['sae_201_2e01_20_2d_20implémentation_20d_27un_20besoin_20client_55',['SAE 1.01 - Implémentation d'un besoin client',['../index.html',1,'']]]
|
||||
];
|
||||
|
Loading…
Reference in new issue