<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ro">
	<id>http://wiki.dcae.pub.ro/index.php?action=history&amp;feed=atom&amp;title=Stack.h</id>
	<title>Stack.h - Revizia istoricului</title>
	<link rel="self" type="application/atom+xml" href="http://wiki.dcae.pub.ro/index.php?action=history&amp;feed=atom&amp;title=Stack.h"/>
	<link rel="alternate" type="text/html" href="http://wiki.dcae.pub.ro/index.php?title=Stack.h&amp;action=history"/>
	<updated>2026-06-04T15:03:42Z</updated>
	<subtitle>Istoricul versiunilor pentru această pagină din wiki</subtitle>
	<generator>MediaWiki 1.35.14</generator>
	<entry>
		<id>http://wiki.dcae.pub.ro/index.php?title=Stack.h&amp;diff=2008&amp;oldid=prev</id>
		<title>Rhobincu: Pagină nouă: &lt;syntaxhighlight lang=&quot;c&quot;&gt; /**  * Header file for a stack implementation.  */  #ifndef __STACK_H__ #define __STACK_H__  struct stack{     char * data;     unsigned int capacity;     u...</title>
		<link rel="alternate" type="text/html" href="http://wiki.dcae.pub.ro/index.php?title=Stack.h&amp;diff=2008&amp;oldid=prev"/>
		<updated>2014-03-27T09:55:16Z</updated>

		<summary type="html">&lt;p&gt;Pagină nouă: &amp;lt;syntaxhighlight lang=&amp;quot;c&amp;quot;&amp;gt; &lt;span dir=&quot;auto&quot;&gt;&lt;span class=&quot;autocomment&quot;&gt;*  * Header file for a stack implementation.: &lt;/span&gt;  #ifndef __STACK_H__ #define __STACK_H__  struct stack{     char * data;     unsigned int capacity;     u...&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Pagină nouă&lt;/b&gt;&lt;/p&gt;&lt;div&gt;&amp;lt;syntaxhighlight lang=&amp;quot;c&amp;quot;&amp;gt;&lt;br /&gt;
/**&lt;br /&gt;
 * Header file for a stack implementation.&lt;br /&gt;
 */&lt;br /&gt;
&lt;br /&gt;
#ifndef __STACK_H__&lt;br /&gt;
#define __STACK_H__&lt;br /&gt;
&lt;br /&gt;
struct stack{&lt;br /&gt;
    char * data;&lt;br /&gt;
    unsigned int capacity;&lt;br /&gt;
    unsigned int head;&lt;br /&gt;
};&lt;br /&gt;
&lt;br /&gt;
struct stack * create_stack(unsigned int capacity);&lt;br /&gt;
&lt;br /&gt;
void delete_stack(struct stack * old_stack);&lt;br /&gt;
&lt;br /&gt;
int is_full(struct stack * my_stack);&lt;br /&gt;
&lt;br /&gt;
int is_empty(struct stack * my_stack);&lt;br /&gt;
&lt;br /&gt;
void stack_push(struct stack * my_stack, char element);&lt;br /&gt;
&lt;br /&gt;
char stack_pop(struct stack * my_stack);&lt;br /&gt;
&lt;br /&gt;
#endif&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;/div&gt;</summary>
		<author><name>Rhobincu</name></author>
	</entry>
</feed>