We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d8512c commit ac3a1cbCopy full SHA for ac3a1cb
1 file changed
Test/main.c
@@ -27,10 +27,10 @@ int main(void)
27
srand((unsigned int)time(NULL));
28
29
testCircularBuffer();
30
- /*testDynamicArray();
+ testDynamicArray();
31
testLinkedList();
32
testQueue();
33
- testStack();*/
+ testStack();
34
35
return EXIT_SUCCESS;
36
}
@@ -109,6 +109,10 @@ void testCircularBuffer()
109
110
111
112
+ if (EXIT_SUCCESS != eaDSCircularBufferAdd(circularBuffer, "dff", 3))
113
+ {
114
+ puts("circularBuffer'a veri eklenemedi!");
115
+ }
116
{
117
memset(data, 0, sizeof(data));
118
0 commit comments