-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathqueue_push.c
26 lines (23 loc) · 1.21 KB
/
queue_push.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* queue_push.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mihykim <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/03/24 13:03:56 by mihykim #+# #+# */
/* Updated: 2020/03/24 17:59:20 by mihykim ### ########.fr */
/* */
/* ************************************************************************** */
#include "queue.h"
int queue_push(t_queue *queue, void *data)
{
if (queue == NULL || queue->data == NULL || queue->last_index + 1 >= (int)queue->max_size)
return (0);
queue->last_index++;
queue->data[queue->last_index] = data;
return (1);
}
/*
** line 17 : 'queue->last_index >= (int)queue->max_size' is wrong because index starts from 0.
*/