zoecfhzech

This commit is contained in:
Raspbeguy
2014-05-22 00:12:25 +02:00
parent 027f3c97fd
commit dc3ee0a643
428 changed files with 14940 additions and 2015 deletions

View File

@@ -93,65 +93,46 @@ var searchBox = new SearchBox("searchBox", "search",false,'Recherche');
<a href="samples_8c.html">Aller à la documentation de ce fichier.</a><div class="fragment"><div class="line"><a name="l00001"></a><span class="lineno"> 1</span>&#160;</div>
<div class="line"><a name="l00011"></a><span class="lineno"> 11</span>&#160;<span class="preprocessor">#include &quot;<a class="code" href="samples_8h.html">samples.h</a>&quot;</span></div>
<div class="line"><a name="l00012"></a><span class="lineno"> 12</span>&#160;</div>
<div class="line"><a name="l00013"></a><span class="lineno"><a class="line" href="samples_8h.html#a4133b353534c6767dc6e58ba19410d83"> 13</a></span>&#160;<span class="keywordtype">int</span> <a class="code" href="samples_8c.html#a4133b353534c6767dc6e58ba19410d83">doitEtreSauvegarde</a>(<a class="code" href="struct__sample.html">Sample</a>* tab[], <span class="keywordtype">int</span> i) {</div>
<div class="line"><a name="l00014"></a><span class="lineno"> 14</span>&#160; <span class="keywordflow">return</span> !(tab[i]-&gt;<a class="code" href="struct__sample.html#ae5683a0632a74679608e9e2ba66924e3">chemin</a>[0]==<span class="charliteral">&#39;.&#39;</span> &amp;&amp; tab[i]-&gt;<a class="code" href="struct__sample.html#ae5683a0632a74679608e9e2ba66924e3">chemin</a>[1]==<span class="charliteral">&#39;/&#39;</span>);</div>
<div class="line"><a name="l00015"></a><span class="lineno"> 15</span>&#160;}</div>
<div class="line"><a name="l00016"></a><span class="lineno"> 16</span>&#160;</div>
<div class="line"><a name="l00017"></a><span class="lineno"><a class="line" href="samples_8h.html#a3829e0358f85979b2d9e1ccc53ee0311"> 17</a></span>&#160;<span class="keywordtype">void</span> <a class="code" href="samples_8c.html#a3829e0358f85979b2d9e1ccc53ee0311">setSauvegarde</a>(<a class="code" href="struct__sample.html">Sample</a>* tab[], <span class="keywordtype">int</span> i) {</div>
<div class="line"><a name="l00018"></a><span class="lineno"> 18</span>&#160; sprintf(tab[i]-&gt;chemin,<span class="stringliteral">&quot;./%d.wav&quot;</span>,i);</div>
<div class="line"><a name="l00019"></a><span class="lineno"> 19</span>&#160;}</div>
<div class="line"><a name="l00020"></a><span class="lineno"> 20</span>&#160;</div>
<div class="line"><a name="l00021"></a><span class="lineno"><a class="line" href="samples_8h.html#a7ff33b007a5c904aaf993d747879cdfa"> 21</a></span>&#160;<span class="keywordtype">void</span> <a class="code" href="samples_8c.html#a7ff33b007a5c904aaf993d747879cdfa">ajouterSample</a>(<a class="code" href="struct__sample.html">Sample</a>* tab[], <span class="keywordtype">int</span> i, <span class="keywordtype">char</span>* chemin) {</div>
<div class="line"><a name="l00022"></a><span class="lineno"> 22</span>&#160; tab[i] = calloc(1,<span class="keyword">sizeof</span>(<a class="code" href="struct__sample.html">Sample</a>));</div>
<div class="line"><a name="l00023"></a><span class="lineno"> 23</span>&#160; sprintf(tab[i]-&gt;<a class="code" href="struct__motif.html#aa192e522685e809efc7e08f1a9fc3583">nom</a>,<span class="stringliteral">&quot;Sample %d&quot;</span>,i);</div>
<div class="line"><a name="l00024"></a><span class="lineno"> 24</span>&#160;}</div>
<div class="line"><a name="l00025"></a><span class="lineno"> 25</span>&#160;</div>
<div class="line"><a name="l00026"></a><span class="lineno"><a class="line" href="samples_8h.html#a3508dbac9b8370605a1e1d6b6d0b00a5"> 26</a></span>&#160;<span class="keywordtype">void</span> <a class="code" href="samples_8c.html#a3508dbac9b8370605a1e1d6b6d0b00a5">supprimerSample</a>(<a class="code" href="struct__sample.html">Sample</a>* tab[], <span class="keywordtype">int</span> i, <a class="code" href="struct__poubelle.html">Poubelle</a>** poub) {</div>
<div class="line"><a name="l00027"></a><span class="lineno"> 27</span>&#160; <span class="keywordflow">if</span> (!(<a class="code" href="samples_8c.html#a4133b353534c6767dc6e58ba19410d83">doitEtreSauvegarde</a>(tab, i))) {</div>
<div class="line"><a name="l00028"></a><span class="lineno"> 28</span>&#160; <a class="code" href="struct__poubelle.html">Poubelle</a>* p = malloc(<span class="keyword">sizeof</span>(<a class="code" href="struct__poubelle.html">Poubelle</a>));</div>
<div class="line"><a name="l00029"></a><span class="lineno"> 29</span>&#160; strcpy(p-&gt;<a class="code" href="struct__poubelle.html#ae5683a0632a74679608e9e2ba66924e3">chemin</a>, tab[i]-&gt;<a class="code" href="struct__sample.html#ae5683a0632a74679608e9e2ba66924e3">chemin</a>);</div>
<div class="line"><a name="l00030"></a><span class="lineno"> 30</span>&#160; p-&gt;<a class="code" href="struct__poubelle.html#a8ee9d7c12a9883246f964abaf3c51c09">suiv</a> = *poub;</div>
<div class="line"><a name="l00031"></a><span class="lineno"> 31</span>&#160; *poub = p;</div>
<div class="line"><a name="l00032"></a><span class="lineno"> 32</span>&#160; }</div>
<div class="line"><a name="l00033"></a><span class="lineno"> 33</span>&#160; free(tab[i]);</div>
<div class="line"><a name="l00034"></a><span class="lineno"> 34</span>&#160;}</div>
<div class="line"><a name="l00035"></a><span class="lineno"> 35</span>&#160;</div>
<div class="line"><a name="l00036"></a><span class="lineno"><a class="line" href="samples_8h.html#a3e652dc39891e23a37e4bcad22e1977d"> 36</a></span>&#160;<span class="keywordtype">void</span> <a class="code" href="samples_8c.html#a3e652dc39891e23a37e4bcad22e1977d">setNom</a>(<a class="code" href="struct__sample.html">Sample</a>* sample, <span class="keywordtype">char</span> <a class="code" href="struct__motif.html#aa192e522685e809efc7e08f1a9fc3583">nom</a>[]) {</div>
<div class="line"><a name="l00037"></a><span class="lineno"> 37</span>&#160; strcpy(sample-&gt;<a class="code" href="struct__sample.html#aa192e522685e809efc7e08f1a9fc3583">nom</a>,nom);</div>
<div class="line"><a name="l00038"></a><span class="lineno"> 38</span>&#160;}</div>
<div class="line"><a name="l00039"></a><span class="lineno"> 39</span>&#160;</div>
<div class="line"><a name="l00040"></a><span class="lineno"><a class="line" href="samples_8h.html#a1f9efeffb63bd507521749a80f7a63ae"> 40</a></span>&#160;<span class="keywordtype">void</span> <a class="code" href="samples_8c.html#a1f9efeffb63bd507521749a80f7a63ae">setHauteur</a>(<a class="code" href="struct__sample.html">Sample</a>* sample, <span class="keywordtype">float</span> hauteur) {</div>
<div class="line"><a name="l00041"></a><span class="lineno"> 41</span>&#160; sample-&gt;<a class="code" href="struct__sample.html#ad6f4c1816d63e77fd49d02c321356871">hauteur_ref</a> = hauteur;</div>
<div class="line"><a name="l00042"></a><span class="lineno"> 42</span>&#160;}</div>
<div class="line"><a name="l00043"></a><span class="lineno"> 43</span>&#160;</div>
<div class="line"><a name="l00044"></a><span class="lineno"><a class="line" href="samples_8h.html#a8c9ea6b79c132397eae4fed664a351ce"> 44</a></span>&#160;<span class="keywordtype">char</span>* <a class="code" href="samples_8c.html#a8c9ea6b79c132397eae4fed664a351ce">getNom</a>(<a class="code" href="struct__sample.html">Sample</a>* sample) {</div>
<div class="line"><a name="l00045"></a><span class="lineno"> 45</span>&#160; <span class="keywordflow">return</span> sample-&gt;<a class="code" href="struct__sample.html#aa192e522685e809efc7e08f1a9fc3583">nom</a>;</div>
<div class="line"><a name="l00046"></a><span class="lineno"> 46</span>&#160;}</div>
<div class="line"><a name="l00047"></a><span class="lineno"> 47</span>&#160;</div>
<div class="line"><a name="l00048"></a><span class="lineno"><a class="line" href="samples_8h.html#abcdecc1e86108d125d248b640491d705"> 48</a></span>&#160;<span class="keywordtype">float</span> <a class="code" href="samples_8c.html#abcdecc1e86108d125d248b640491d705">getHauteur</a>(<a class="code" href="struct__sample.html">Sample</a>* sample) {</div>
<div class="line"><a name="l00049"></a><span class="lineno"> 49</span>&#160; <span class="keywordflow">return</span> sample-&gt;<a class="code" href="struct__sample.html#ad6f4c1816d63e77fd49d02c321356871">hauteur_ref</a>;</div>
<div class="line"><a name="l00050"></a><span class="lineno"> 50</span>&#160;}</div>
<div class="ttc" id="samples_8c_html_a3829e0358f85979b2d9e1ccc53ee0311"><div class="ttname"><a href="samples_8c.html#a3829e0358f85979b2d9e1ccc53ee0311">setSauvegarde</a></div><div class="ttdeci">void setSauvegarde(Sample *tab[], int i)</div><div class="ttdef"><b>Definition:</b> <a href="samples_8c_source.html#l00017">samples.c:17</a></div></div>
<div class="line"><a name="l00013"></a><span class="lineno"><a class="line" href="samples_8h.html#a7ff33b007a5c904aaf993d747879cdfa"> 13</a></span>&#160;<span class="keywordtype">void</span> <a class="code" href="samples_8c.html#a7ff33b007a5c904aaf993d747879cdfa">ajouterSample</a>(<a class="code" href="struct__sample.html">Sample</a>* tab[], <span class="keywordtype">int</span> i, <span class="keywordtype">char</span>* chemin) {</div>
<div class="line"><a name="l00014"></a><span class="lineno"> 14</span>&#160; tab[i] = calloc(1,<span class="keyword">sizeof</span>(<a class="code" href="struct__sample.html">Sample</a>));</div>
<div class="line"><a name="l00015"></a><span class="lineno"> 15</span>&#160; sprintf(tab[i]-&gt;<a class="code" href="struct__motif.html#aa192e522685e809efc7e08f1a9fc3583">nom</a>,<span class="stringliteral">&quot;Sample %d&quot;</span>,i);</div>
<div class="line"><a name="l00016"></a><span class="lineno"> 16</span>&#160; strcpy(tab[i]-&gt;chemin,chemin);</div>
<div class="line"><a name="l00017"></a><span class="lineno"> 17</span>&#160;}</div>
<div class="line"><a name="l00018"></a><span class="lineno"> 18</span>&#160;</div>
<div class="line"><a name="l00019"></a><span class="lineno"><a class="line" href="samples_8h.html#a62d7e2b6ad96bf83ebd44b22f93f54bf"> 19</a></span>&#160;<span class="keywordtype">void</span> <a class="code" href="samples_8c.html#a62d7e2b6ad96bf83ebd44b22f93f54bf">supprimerSample</a>(<a class="code" href="struct__sample.html">Sample</a>* tab[], <span class="keywordtype">int</span> i) {</div>
<div class="line"><a name="l00020"></a><span class="lineno"> 20</span>&#160; free(tab[i]);</div>
<div class="line"><a name="l00021"></a><span class="lineno"> 21</span>&#160;}</div>
<div class="line"><a name="l00022"></a><span class="lineno"> 22</span>&#160;</div>
<div class="line"><a name="l00023"></a><span class="lineno"><a class="line" href="samples_8h.html#a3e652dc39891e23a37e4bcad22e1977d"> 23</a></span>&#160;<span class="keywordtype">void</span> <a class="code" href="samples_8c.html#a3e652dc39891e23a37e4bcad22e1977d">setNom</a>(<a class="code" href="struct__sample.html">Sample</a>* sample, <span class="keywordtype">char</span> <a class="code" href="struct__motif.html#aa192e522685e809efc7e08f1a9fc3583">nom</a>[]) {</div>
<div class="line"><a name="l00024"></a><span class="lineno"> 24</span>&#160; strcpy(sample-&gt;<a class="code" href="struct__sample.html#aa192e522685e809efc7e08f1a9fc3583">nom</a>,nom);</div>
<div class="line"><a name="l00025"></a><span class="lineno"> 25</span>&#160;}</div>
<div class="line"><a name="l00026"></a><span class="lineno"> 26</span>&#160;</div>
<div class="line"><a name="l00027"></a><span class="lineno"><a class="line" href="samples_8h.html#a1f9efeffb63bd507521749a80f7a63ae"> 27</a></span>&#160;<span class="keywordtype">void</span> <a class="code" href="samples_8c.html#a1f9efeffb63bd507521749a80f7a63ae">setHauteur</a>(<a class="code" href="struct__sample.html">Sample</a>* sample, <span class="keywordtype">float</span> hauteur) {</div>
<div class="line"><a name="l00028"></a><span class="lineno"> 28</span>&#160; sample-&gt;<a class="code" href="struct__sample.html#ad6f4c1816d63e77fd49d02c321356871">hauteur_ref</a> = hauteur;</div>
<div class="line"><a name="l00029"></a><span class="lineno"> 29</span>&#160;}</div>
<div class="line"><a name="l00030"></a><span class="lineno"> 30</span>&#160;</div>
<div class="line"><a name="l00031"></a><span class="lineno"><a class="line" href="samples_8h.html#a8c9ea6b79c132397eae4fed664a351ce"> 31</a></span>&#160;<span class="keywordtype">char</span>* <a class="code" href="samples_8c.html#a8c9ea6b79c132397eae4fed664a351ce">getNom</a>(<a class="code" href="struct__sample.html">Sample</a>* sample) {</div>
<div class="line"><a name="l00032"></a><span class="lineno"> 32</span>&#160; <span class="keywordflow">return</span> sample-&gt;<a class="code" href="struct__sample.html#aa192e522685e809efc7e08f1a9fc3583">nom</a>;</div>
<div class="line"><a name="l00033"></a><span class="lineno"> 33</span>&#160;}</div>
<div class="line"><a name="l00034"></a><span class="lineno"> 34</span>&#160;</div>
<div class="line"><a name="l00035"></a><span class="lineno"><a class="line" href="samples_8h.html#abcdecc1e86108d125d248b640491d705"> 35</a></span>&#160;<span class="keywordtype">float</span> <a class="code" href="samples_8c.html#abcdecc1e86108d125d248b640491d705">getHauteur</a>(<a class="code" href="struct__sample.html">Sample</a>* sample) {</div>
<div class="line"><a name="l00036"></a><span class="lineno"> 36</span>&#160; <span class="keywordflow">return</span> sample-&gt;<a class="code" href="struct__sample.html#ad6f4c1816d63e77fd49d02c321356871">hauteur_ref</a>;</div>
<div class="line"><a name="l00037"></a><span class="lineno"> 37</span>&#160;}</div>
<div class="ttc" id="struct__sample_html"><div class="ttname"><a href="struct__sample.html">_sample</a></div><div class="ttdef"><b>Definition:</b> <a href="samples_8h_source.html#l00019">samples.h:19</a></div></div>
<div class="ttc" id="struct__motif_html_aa192e522685e809efc7e08f1a9fc3583"><div class="ttname"><a href="struct__motif.html#aa192e522685e809efc7e08f1a9fc3583">_motif::nom</a></div><div class="ttdeci">char nom[10]</div><div class="ttdef"><b>Definition:</b> <a href="motifs_8h_source.html#l00032">motifs.h:32</a></div></div>
<div class="ttc" id="samples_8c_html_a7ff33b007a5c904aaf993d747879cdfa"><div class="ttname"><a href="samples_8c.html#a7ff33b007a5c904aaf993d747879cdfa">ajouterSample</a></div><div class="ttdeci">void ajouterSample(Sample *tab[], int i, char *chemin)</div><div class="ttdef"><b>Definition:</b> <a href="samples_8c_source.html#l00021">samples.c:21</a></div></div>
<div class="ttc" id="struct__poubelle_html"><div class="ttname"><a href="struct__poubelle.html">_poubelle</a></div><div class="ttdef"><b>Definition:</b> <a href="samples_8h_source.html#l00034">samples.h:34</a></div></div>
<div class="ttc" id="samples_8c_html_a8c9ea6b79c132397eae4fed664a351ce"><div class="ttname"><a href="samples_8c.html#a8c9ea6b79c132397eae4fed664a351ce">getNom</a></div><div class="ttdeci">char * getNom(Sample *sample)</div><div class="ttdef"><b>Definition:</b> <a href="samples_8c_source.html#l00044">samples.c:44</a></div></div>
<div class="ttc" id="samples_8c_html_a62d7e2b6ad96bf83ebd44b22f93f54bf"><div class="ttname"><a href="samples_8c.html#a62d7e2b6ad96bf83ebd44b22f93f54bf">supprimerSample</a></div><div class="ttdeci">void supprimerSample(Sample *tab[], int i)</div><div class="ttdef"><b>Definition:</b> <a href="samples_8c_source.html#l00019">samples.c:19</a></div></div>
<div class="ttc" id="samples_8c_html_a7ff33b007a5c904aaf993d747879cdfa"><div class="ttname"><a href="samples_8c.html#a7ff33b007a5c904aaf993d747879cdfa">ajouterSample</a></div><div class="ttdeci">void ajouterSample(Sample *tab[], int i, char *chemin)</div><div class="ttdef"><b>Definition:</b> <a href="samples_8c_source.html#l00013">samples.c:13</a></div></div>
<div class="ttc" id="samples_8c_html_a8c9ea6b79c132397eae4fed664a351ce"><div class="ttname"><a href="samples_8c.html#a8c9ea6b79c132397eae4fed664a351ce">getNom</a></div><div class="ttdeci">char * getNom(Sample *sample)</div><div class="ttdef"><b>Definition:</b> <a href="samples_8c_source.html#l00031">samples.c:31</a></div></div>
<div class="ttc" id="struct__sample_html_ad6f4c1816d63e77fd49d02c321356871"><div class="ttname"><a href="struct__sample.html#ad6f4c1816d63e77fd49d02c321356871">_sample::hauteur_ref</a></div><div class="ttdeci">float hauteur_ref</div><div class="ttdef"><b>Definition:</b> <a href="samples_8h_source.html#l00028">samples.h:28</a></div></div>
<div class="ttc" id="struct__sample_html_aa192e522685e809efc7e08f1a9fc3583"><div class="ttname"><a href="struct__sample.html#aa192e522685e809efc7e08f1a9fc3583">_sample::nom</a></div><div class="ttdeci">char nom[10]</div><div class="ttdef"><b>Definition:</b> <a href="samples_8h_source.html#l00024">samples.h:24</a></div></div>
<div class="ttc" id="samples_8c_html_a3e652dc39891e23a37e4bcad22e1977d"><div class="ttname"><a href="samples_8c.html#a3e652dc39891e23a37e4bcad22e1977d">setNom</a></div><div class="ttdeci">void setNom(Sample *sample, char nom[])</div><div class="ttdef"><b>Definition:</b> <a href="samples_8c_source.html#l00036">samples.c:36</a></div></div>
<div class="ttc" id="samples_8c_html_a1f9efeffb63bd507521749a80f7a63ae"><div class="ttname"><a href="samples_8c.html#a1f9efeffb63bd507521749a80f7a63ae">setHauteur</a></div><div class="ttdeci">void setHauteur(Sample *sample, float hauteur)</div><div class="ttdef"><b>Definition:</b> <a href="samples_8c_source.html#l00040">samples.c:40</a></div></div>
<div class="ttc" id="struct__poubelle_html_ae5683a0632a74679608e9e2ba66924e3"><div class="ttname"><a href="struct__poubelle.html#ae5683a0632a74679608e9e2ba66924e3">_poubelle::chemin</a></div><div class="ttdeci">char chemin[500]</div><div class="ttdef"><b>Definition:</b> <a href="samples_8h_source.html#l00035">samples.h:35</a></div></div>
<div class="ttc" id="samples_8c_html_abcdecc1e86108d125d248b640491d705"><div class="ttname"><a href="samples_8c.html#abcdecc1e86108d125d248b640491d705">getHauteur</a></div><div class="ttdeci">float getHauteur(Sample *sample)</div><div class="ttdef"><b>Definition:</b> <a href="samples_8c_source.html#l00048">samples.c:48</a></div></div>
<div class="ttc" id="samples_8c_html_a3508dbac9b8370605a1e1d6b6d0b00a5"><div class="ttname"><a href="samples_8c.html#a3508dbac9b8370605a1e1d6b6d0b00a5">supprimerSample</a></div><div class="ttdeci">void supprimerSample(Sample *tab[], int i, Poubelle **poub)</div><div class="ttdef"><b>Definition:</b> <a href="samples_8c_source.html#l00026">samples.c:26</a></div></div>
<div class="ttc" id="samples_8c_html_a3e652dc39891e23a37e4bcad22e1977d"><div class="ttname"><a href="samples_8c.html#a3e652dc39891e23a37e4bcad22e1977d">setNom</a></div><div class="ttdeci">void setNom(Sample *sample, char nom[])</div><div class="ttdef"><b>Definition:</b> <a href="samples_8c_source.html#l00023">samples.c:23</a></div></div>
<div class="ttc" id="samples_8c_html_a1f9efeffb63bd507521749a80f7a63ae"><div class="ttname"><a href="samples_8c.html#a1f9efeffb63bd507521749a80f7a63ae">setHauteur</a></div><div class="ttdeci">void setHauteur(Sample *sample, float hauteur)</div><div class="ttdef"><b>Definition:</b> <a href="samples_8c_source.html#l00027">samples.c:27</a></div></div>
<div class="ttc" id="samples_8c_html_abcdecc1e86108d125d248b640491d705"><div class="ttname"><a href="samples_8c.html#abcdecc1e86108d125d248b640491d705">getHauteur</a></div><div class="ttdeci">float getHauteur(Sample *sample)</div><div class="ttdef"><b>Definition:</b> <a href="samples_8c_source.html#l00035">samples.c:35</a></div></div>
<div class="ttc" id="samples_8h_html"><div class="ttname"><a href="samples_8h.html">samples.h</a></div></div>
<div class="ttc" id="samples_8c_html_a4133b353534c6767dc6e58ba19410d83"><div class="ttname"><a href="samples_8c.html#a4133b353534c6767dc6e58ba19410d83">doitEtreSauvegarde</a></div><div class="ttdeci">int doitEtreSauvegarde(Sample *tab[], int i)</div><div class="ttdef"><b>Definition:</b> <a href="samples_8c_source.html#l00013">samples.c:13</a></div></div>
<div class="ttc" id="struct__poubelle_html_a8ee9d7c12a9883246f964abaf3c51c09"><div class="ttname"><a href="struct__poubelle.html#a8ee9d7c12a9883246f964abaf3c51c09">_poubelle::suiv</a></div><div class="ttdeci">struct _poubelle * suiv</div><div class="ttdef"><b>Definition:</b> <a href="samples_8h_source.html#l00036">samples.h:36</a></div></div>
<div class="ttc" id="struct__sample_html_ae5683a0632a74679608e9e2ba66924e3"><div class="ttname"><a href="struct__sample.html#ae5683a0632a74679608e9e2ba66924e3">_sample::chemin</a></div><div class="ttdeci">char chemin[500]</div><div class="ttdef"><b>Definition:</b> <a href="samples_8h_source.html#l00023">samples.h:23</a></div></div>
</div><!-- fragment --></div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Généré le Vendredi 16 Mai 2014 12:37:44 pour PonyTracker par &#160;<a href="http://www.doxygen.org/index.html">
Généré le Jeudi 22 Mai 2014 00:09:13 pour PonyTracker par &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.6
</small></address>