ZE-Standard-Libraries/list/list_expand.c

595 lines
17 KiB
C
Raw Normal View History

2018-06-12 11:07:12 +00:00
#include "list_expand.h"
2018-08-14 15:59:55 +00:00
Node *nodeWithInt(int m_int, _Bool if_sid) {
Node *p_node;
2018-08-07 04:10:55 +00:00
int *p_int = (int *)malloc(sizeof(int));
if(p_int == NULL){
2018-08-17 08:58:15 +00:00
showError(pushError(INT, STANDARD, initInfo(__FUNCTION__, "Error in getting the memory of int.")));
2018-08-07 04:10:55 +00:00
return NULL;
}
2018-06-12 11:07:12 +00:00
*p_int = m_int;
2018-08-14 15:59:55 +00:00
p_node = initNode(if_sid);
2018-07-23 04:59:16 +00:00
initMallocValueForNode(p_node, INT, (void *)p_int);
2018-06-12 11:07:12 +00:00
return p_node;
2018-08-07 04:10:55 +00:00
}
2018-08-14 15:59:55 +00:00
Node *nodeWithUInt(unsigned int m_uint, _Bool if_sid){
2018-08-07 04:10:55 +00:00
Node *p_node;
unsigned int *pu_int = (unsigned int *)malloc(sizeof(unsigned int));
if(pu_int == NULL){
2018-08-17 08:58:15 +00:00
showError(pushError(INT, STANDARD, initInfo(__FUNCTION__, "Error in getting the memory of int.")));
2018-08-07 04:10:55 +00:00
return NULL;
}
*pu_int = m_uint;
2018-08-14 15:59:55 +00:00
p_node = initNode(if_sid);
2018-08-07 04:10:55 +00:00
initMallocValueForNode(p_node, INT, (void *)pu_int);
return p_node;
2018-06-12 11:07:12 +00:00
}
2018-08-17 08:58:15 +00:00
Node *nodeWithULLInt(unsigned long long m_ullint, _Bool if_sid) {
Node *p_node;
unsigned long long *p_ullint = (unsigned long long *)malloc(sizeof(unsigned long long));
if(p_ullint == NULL){
showError(pushError(INT, STANDARD, initInfo(__FUNCTION__, "Error in getting the memory of int.")));
return NULL;
}
*p_ullint = m_ullint;
p_node = initNode(if_sid);
initMallocValueForNode(p_node, ULLINT, (void *)p_ullint);
return p_node;
}
2018-06-12 11:07:12 +00:00
2018-08-14 15:59:55 +00:00
Node *nodeWithDouble(double m_double, _Bool if_sid) {
Node *p_node;
2018-08-07 04:10:55 +00:00
double *p_double = (double *)malloc(sizeof(double));
if(p_double == NULL){
2018-08-17 08:58:15 +00:00
showError(pushError(DOUBLE, STANDARD, initInfo(__FUNCTION__, "Error in getting the memory of double.")));
2018-08-07 04:10:55 +00:00
return NULL;
}
2018-06-12 11:07:12 +00:00
*p_double = m_double;
2018-08-14 15:59:55 +00:00
p_node = initNode(if_sid);
2018-07-23 04:59:16 +00:00
initMallocValueForNode(p_node, DOUBLE, (void *)p_double);
2018-06-12 11:07:12 +00:00
return p_node;
}
2018-08-14 15:59:55 +00:00
Node *nodeWithString(const char *m_string, _Bool if_sid) {
Node *p_node;
2018-08-07 04:10:55 +00:00
char *p_string = (char *)malloc(sizeof(char)*(strlen(m_string) + 1));
if(p_string == NULL){
showError(pushError(STRING, STANDARD, initInfo("initWithString()", "Error in getting the memory of string.")));
return NULL;
}
2018-07-23 04:59:16 +00:00
strcpy(p_string, m_string);
2018-08-14 15:59:55 +00:00
p_node = initNode(if_sid);
2018-07-23 04:59:16 +00:00
initMallocValueForNode(p_node, STRING, (void *)p_string);
2018-06-12 11:07:12 +00:00
return p_node;
}
2018-08-14 15:59:55 +00:00
Node *nodeWithPointer(const void *m_pointer, _Bool if_sid) {
Node *p_node = initNode(if_sid);
2018-07-23 04:59:16 +00:00
initMallocValueForNode(p_node, POINTER, m_pointer);
2018-06-12 11:07:12 +00:00
return p_node;
}
Node *nodeWithComplex(void) {
2018-08-14 15:59:55 +00:00
Node *p_node = initNode(0);
2018-07-23 04:59:16 +00:00
p_node->type = LIST;
2018-08-14 15:59:55 +00:00
p_node->value = initList(0);
2018-06-12 11:07:12 +00:00
return p_node;
}
2018-08-14 15:59:55 +00:00
Node *findByIndexForNode(List *p_list, unsigned long long m_index) {
if(p_list->p_lq != NULL){
register struct list_quick *p_lq = p_list->p_lq;
2018-08-17 08:58:15 +00:00
if(p_lq->fn_node != NULL) return getNodeByFnNode(p_list, m_index);
}
Node *p_node = p_list->head;
unsigned long long i;
for (i = 0; i < m_index; i++) {
p_node = p_node->next;
2018-08-14 15:59:55 +00:00
}
2018-08-17 08:58:15 +00:00
return p_node;
2018-08-14 15:59:55 +00:00
}
s_Node *s_findByIndexForNode(List *p_list, unsigned long long m_index) {
s_Node *s_p_node = p_list->s_head;
unsigned long long i;
for (i = 0; i < m_index; i++) {
s_p_node = s_p_node->next;
}
return s_p_node;
2018-06-12 11:07:12 +00:00
}
2018-08-07 04:10:55 +00:00
List *listThrough(List *p_list, List *(*p_func)(unsigned int, void *, List *), List *expand_resources) {
Node *p_node = p_list->head;
2018-08-17 08:58:15 +00:00
List *m_rtnlst = NULL;
unsigned long long count = 0;
insertInTail(expand_resources, nodeWithULLInt(count, 0));
2018-06-12 11:07:12 +00:00
while (p_node != NULL) {
2018-08-14 15:59:55 +00:00
if (p_node->value != NULL) {
2018-08-07 04:10:55 +00:00
List *m_rtnlst = (*p_func)(p_node->type, p_node->value, expand_resources);
int status = getByIntForNode(findByIndexForNode(m_rtnlst, 0));
if (status == -1) break;
else if (status == 1) {
p_node = p_node->last;
releaseList(m_rtnlst);
m_rtnlst = NULL;
2018-06-12 11:07:12 +00:00
continue;
}
else {
2018-08-07 04:10:55 +00:00
releaseList(m_rtnlst);
m_rtnlst = NULL;
2018-06-12 11:07:12 +00:00
}
}
p_node = p_node->next;
}
2018-08-07 04:10:55 +00:00
return m_rtnlst;
2018-06-12 11:07:12 +00:00
}
int getByIntForNode(Node *p_node) {
2018-07-23 04:59:16 +00:00
if (p_node->type == INT) return *(int *)(p_node->value);
2018-06-12 11:07:12 +00:00
else return -1;
2018-08-07 04:10:55 +00:00
}
unsigned int getByUIntForNode(Node *p_node){
if (p_node->type == UINT) return *(unsigned int *)(p_node->value);
else return -1;
2018-06-12 11:07:12 +00:00
}
char *getByStringForNode(Node *p_node) {
2018-07-23 04:59:16 +00:00
if (p_node->type == STRING) return (char *)(p_node->value);
2018-06-12 11:07:12 +00:00
else return NULL;
}
double getByDoubleForNode(Node *p_node) {
2018-07-23 04:59:16 +00:00
if (p_node->type == DOUBLE) return *(double *)(p_node->value);
2018-06-12 11:07:12 +00:00
else return -1;
}
void *getByPointerForNode(Node *p_node) {
2018-07-23 04:59:16 +00:00
if (p_node->type == POINTER) return (void *)(p_node->value);
2018-06-12 11:07:12 +00:00
else return NULL;
}
void printListInfo(List *p_list, int priority) {
int i = 0;
Node *p_node;
for (i = 0; i < priority; i++) printf(" ");
2018-07-30 10:18:58 +00:00
printf("###LIST(location:%p, id:%s){\n", p_list, s_idToASCIIString(p_list->s_id));
for (i = 0; i < priority + 1; i++) printf(" ");
2018-06-12 11:07:12 +00:00
printf("HEAD->%p / Tail->%p / Length:%llu\n", p_list->head, p_list->tail, p_list->length);
p_node = p_list->head;
2018-06-12 11:07:12 +00:00
while (p_node != NULL) {
for (i = 0; i < priority + 1; i++) printf(" ");
2018-06-12 11:07:12 +00:00
printf("%d.... \n", i);
printNodeInfo(p_node, priority + 1);
p_node = p_node->next;
i++;
}
for (i = 0; i < priority; i++) printf(" ");
2018-06-12 11:07:12 +00:00
printf("}\n");
}
void printList(List *p_list) {
int if_nearLast = 0;
2018-06-12 11:07:12 +00:00
Node *p_node = p_list->head;
printf("[");
while (p_node != NULL) {
if (!if_nearLast && p_node->next == NULL) if_nearLast = 1;
2018-07-23 04:59:16 +00:00
if (p_node->type == INT) {
2018-06-12 11:07:12 +00:00
printf("%d", *(int *)(p_node->value));
}
2018-07-23 04:59:16 +00:00
else if (p_node->type == DOUBLE) {
2018-06-12 11:07:12 +00:00
printf("%a", *(double *)(p_node->value));
}
2018-07-23 04:59:16 +00:00
else if (p_node->type == STRING) {
2018-06-12 11:07:12 +00:00
printf("%s", (char *)(p_node->value));
}
2018-07-23 04:59:16 +00:00
else if (p_node->type == POINTER) {
2018-06-13 08:04:51 +00:00
printf("%p", (char *)(p_node->value));
2018-06-12 11:07:12 +00:00
}
2018-07-23 04:59:16 +00:00
else if (p_node->type == LIST) {
2018-06-12 11:07:12 +00:00
printList((List *)p_node->value);
}
if (!if_nearLast) {
printf(", ");
}
p_node = p_node->next;
}
printf("]");
}
void printNodeInfo(Node *p_node, int priority) {
int i;
for (i = 0; i < priority; i++) printf(" ");
2018-07-30 10:18:58 +00:00
printf("#NODE(location:%p, id:%s){\n", p_node, s_idToASCIIString(p_node->s_id));
for (i = 0; i < priority + 1; i++) printf(" ");
2018-08-14 15:59:55 +00:00
printf("NEXT->%p / LAST->%p\n", p_node->next, p_node->last);
2018-07-23 04:59:16 +00:00
if (p_node->type == INT) {
for (i = 0; i < priority + 1; i++) printf(" ");
2018-06-13 08:15:25 +00:00
printf("VALUE(int):%d\n", *(int *)(p_node->value));
2018-06-12 11:07:12 +00:00
}
2018-07-23 04:59:16 +00:00
else if (p_node->type == DOUBLE) {
for (i = 0; i < priority + 1; i++) printf(" ");
2018-06-13 08:15:25 +00:00
printf("VALUE(double):%a\n", *(double *)(p_node->value));
2018-06-12 11:07:12 +00:00
}
2018-07-23 04:59:16 +00:00
else if (p_node->type == STRING) {
for (i = 0; i < priority + 1; i++) printf(" ");
2018-06-13 08:15:25 +00:00
printf("VALUE(string):%s\n", (char *)(p_node->value));
2018-06-12 11:07:12 +00:00
}
2018-07-23 04:59:16 +00:00
else if (p_node->type == POINTER) {
for (i = 0; i < priority + 1; i++) printf(" ");
2018-06-13 08:15:25 +00:00
printf("VALUE(pointer):%s\n", (char *)(p_node->value));
2018-06-12 11:07:12 +00:00
}
2018-07-23 04:59:16 +00:00
else if (p_node->type == LIST) {
for (i = 0; i < priority + 1; i++) printf(" ");
2018-06-12 11:07:12 +00:00
printf("VALUE(List):\n");
printListInfo((List *)p_node->value, priority + 2);
}
for (i = 0; i < priority; i++) printf(" ");
2018-06-12 11:07:12 +00:00
printf("}\n");
}
void printNode(Node *p_node) {
int i;
2018-07-30 10:18:58 +00:00
printf("#NODE(location:%p, id:%s){\n", p_node, s_idToASCIIString(p_node->s_id));
2018-06-12 11:07:12 +00:00
printf(" ");
2018-07-23 04:59:16 +00:00
printf("NEXT->%p / LAST->%p\n", p_node->next, p_node->last);
for (i = 0; i < 1; i++) printf(" ");
2018-06-13 08:15:25 +00:00
printf("ifMalloc: ");
2018-08-14 15:59:55 +00:00
if (p_node->value != NULL) {
2018-06-13 08:15:25 +00:00
printf("YES\n");
for (i = 0; i < 1; i++) printf(" ");
2018-07-23 04:59:16 +00:00
printf("Value(type: %d): ", p_node->type);
if (p_node->type == INT) {
2018-06-13 08:15:25 +00:00
printf("%d", *(int *)(p_node->value));
}
2018-07-23 04:59:16 +00:00
else if (p_node->type == DOUBLE) {
2018-06-13 08:15:25 +00:00
printf("%a\n", *(double *)(p_node->value));
}
2018-07-23 04:59:16 +00:00
else if (p_node->type == STRING) {
2018-06-13 08:15:25 +00:00
printf("%s\n", (char *)(p_node->value));
}
2018-07-23 04:59:16 +00:00
else if (p_node->type == POINTER) {
printf("%p\n", (char *)(p_node->value));
2018-06-13 08:15:25 +00:00
}
2018-07-23 04:59:16 +00:00
else if (p_node->type == LIST) {
2018-06-13 08:15:25 +00:00
printList((List *)p_node->value);
}
2018-06-12 11:07:12 +00:00
}
2018-06-13 08:15:25 +00:00
else printf("NO\n");
2018-06-12 11:07:12 +00:00
printf("}\n");
}
Node *findByIntForNode(List *p_list, int target) {
Node *t_node;
2018-06-12 11:07:12 +00:00
int *p_target = (int *)malloc(sizeof(int));
*p_target = target;
2018-07-23 04:59:16 +00:00
t_node = findByValue(p_list, INT, p_target);
2018-06-12 11:07:12 +00:00
free(p_target);
return t_node;
}
Node *findByDoubleForNode(List *p_list, double target) {
Node *t_node;
2018-06-12 11:07:12 +00:00
double *p_target = (double *)malloc(sizeof(double));
*p_target = target;
2018-07-23 04:59:16 +00:00
t_node = findByValue(p_list, DOUBLE, p_target);
2018-06-12 11:07:12 +00:00
free(p_target);
return t_node;
}
Node *findByStringForNode(List *p_list, char *target) {
Node *t_node;
2018-06-12 11:07:12 +00:00
char *p_temp = (char *)malloc(sizeof(char)*(strlen(target) + 1));
2018-07-23 04:59:16 +00:00
strcpy(p_temp, target);
t_node = findByValue(p_list, STRING, p_temp);
2018-06-12 11:07:12 +00:00
free(p_temp);
return t_node;
}
Node *findByPointerForNode(List *p_list, void *target) {
2018-07-23 04:59:16 +00:00
Node *t_node = findByValue(p_list, POINTER, target);
2018-06-12 11:07:12 +00:00
return t_node;
}
2018-07-23 04:59:16 +00:00
int addValueForComplex(Node * p_node, int type, void *value) {
List *c_list;
Node *c_node;
2018-07-23 04:59:16 +00:00
if (p_node->type == LIST) {
c_list = (List *)p_node->value;
2018-08-14 15:59:55 +00:00
c_node = initNode(0);
2018-06-12 11:07:12 +00:00
initMallocValueForNode(c_node, type, value);
insertInTail(c_list, c_node);
return 0;
}
return -1;
}
int addIntForComplex(Node *p_node, int temp) {
2018-07-23 04:59:16 +00:00
if (p_node->type == LIST) {
2018-08-07 04:10:55 +00:00
int *p_temp = (int *)malloc(sizeof(int));
if(p_temp == NULL){
showError(pushError(INT, STANDARD, initInfo("addIntForComplex()", "Error in getting the memory of int.")));
return -1;
}
2018-06-12 11:07:12 +00:00
*p_temp = temp;
2018-07-23 04:59:16 +00:00
addValueForComplex(p_node, INT, p_temp);
2018-06-12 11:07:12 +00:00
return 0;
}
return -1;
}
int addDoubleForComplex(Node *p_node, double temp) {
2018-07-23 04:59:16 +00:00
if (p_node->type == LIST) {
2018-08-07 04:10:55 +00:00
double *p_temp = (double *)malloc(sizeof(double));
if(p_temp == NULL){
showError(pushError(DOUBLE, STANDARD, initInfo("addDoubleForComplex()", "Error in getting the memory of double.")));
return -1;
}
2018-06-12 11:07:12 +00:00
*p_temp = temp;
2018-07-23 04:59:16 +00:00
addValueForComplex(p_node, DOUBLE, p_temp);
2018-06-12 11:07:12 +00:00
return 0;
}
return -1;
}
int addStringForComplex(Node *p_node, char *temp) {
2018-07-23 04:59:16 +00:00
if (p_node->type == LIST) {
2018-08-07 04:10:55 +00:00
char *p_temp = (char *)malloc(sizeof(strlen(temp) + 1));
if(p_temp == NULL){
showError(pushError(STRING, STANDARD, initInfo("addStringForComplex()", "Error in getting the memory of string.")));
return -1;
}
2018-07-23 04:59:16 +00:00
strcpy(p_temp, temp);
addValueForComplex(p_node, STRING, p_temp);
2018-06-12 11:07:12 +00:00
return 0;
}
return -1;
}
int addPointerForComplex(Node *p_node, void *temp) {
2018-07-23 04:59:16 +00:00
if (p_node->type == LIST) {
addValueForComplex(p_node, POINTER, temp);
2018-06-12 11:07:12 +00:00
return 0;
}
return -1;
}
List *m_findByInt(List* p_list, int temp) {
2018-08-07 04:10:55 +00:00
int *p_temp = (int *)malloc(sizeof(int));
if(p_temp == NULL){
showError(pushError(INT, STANDARD, initInfo("m_findByInt()", "Error in getting the memory of int.")));
return NULL;
}
List *t_list;
2018-06-12 11:07:12 +00:00
*p_temp = temp;
2018-07-23 04:59:16 +00:00
t_list = mply_findByValue(p_list, INT, (void *)p_temp);
2018-06-12 11:07:12 +00:00
free(p_temp);
return t_list;
}
List *m_findByDouble(List* p_list, double temp) {
List *t_list;
2018-08-07 04:10:55 +00:00
double *p_temp = (double *)malloc(sizeof(double));
if(p_temp == NULL){
showError(pushError(DOUBLE, STANDARD, initInfo("m_findByDouble()", "Error in getting the memory of double.")));
return NULL;
}
2018-06-12 11:07:12 +00:00
*p_temp = temp;
2018-07-23 04:59:16 +00:00
t_list = mply_findByValue(p_list, DOUBLE, (void *)p_temp);
2018-06-12 11:07:12 +00:00
free(p_temp);
return t_list;
}
List *m_findByString(List* p_list, char *temp) {
List *t_list;
2018-08-07 04:10:55 +00:00
char *p_temp = (char *)malloc(sizeof(char)*(strlen(temp) + 1));
if(p_temp == NULL){
showError(pushError(STRING, STANDARD, initInfo("m_findByString()", "Error in getting the memory of string.")));
return NULL;
}
2018-07-23 04:59:16 +00:00
strcpy(p_temp, temp);
t_list = mply_findByValue(p_list, STRING, (void *)p_temp);
2018-06-12 11:07:12 +00:00
free(p_temp);
return t_list;
}
List *m_findByPointer(List* p_list, void *temp) {
2018-07-23 04:59:16 +00:00
List *t_list = mply_findByValue(p_list, DOUBLE, (void *)temp);
2018-06-12 11:07:12 +00:00
return t_list;
}
2018-08-14 15:59:55 +00:00
unsigned long long getIndexByNode(List *p_list, Node *p_node) {
if (p_list->p_lq != NULL){
register Node **p_fn_node = p_list->p_lq->fn_node;
register Node *rp_node = p_node;
for (register int i = 0; i < p_list->length; i++) if (p_fn_node[i] == rp_node) return i;
}
else{
register Node *t_node = p_list->head;
register unsigned long long index = 0;
while (t_node != NULL) {
if (p_node->s_id == t_node->s_id) return index;
index++;
t_node = t_node->next;
}
}
2018-06-12 11:07:12 +00:00
return 0;
}
2018-08-14 15:59:55 +00:00
List *plym_findByIntForNode(List* p_list, int temp) {
2018-08-07 04:10:55 +00:00
int *p_temp = (int *)malloc(sizeof(int));
if(p_temp == NULL){
showError(pushError(INT, STANDARD, initInfo("m_findByIntForNode()", "Error in getting the memory of int.")));
return NULL;
}
2018-06-12 11:07:12 +00:00
*p_temp = temp;
2018-07-23 04:59:16 +00:00
return mply_findByValue(p_list, INT, (void *)p_temp);
2018-06-12 11:07:12 +00:00
}
2018-08-14 15:59:55 +00:00
List *mply_findByDoubleForNode(List* p_list, double temp) {
2018-08-07 04:10:55 +00:00
double *p_temp = (double *)malloc(sizeof(double));
if(p_temp == NULL){
showError(pushError(DOUBLE, STANDARD, initInfo("m_findByDoubleForNode()", "Error in getting the memory of double.")));
return NULL;
}
2018-06-12 11:07:12 +00:00
*p_temp = temp;
2018-07-23 04:59:16 +00:00
return mply_findByValue(p_list, DOUBLE, (void *)p_temp);
2018-06-12 11:07:12 +00:00
}
2018-08-14 15:59:55 +00:00
List *mply_findByStringForNode(List* p_list, char *temp) {
2018-08-07 04:10:55 +00:00
char *p_temp = (char *)malloc(sizeof(char) * (strlen(temp) + 1));
if(p_temp == NULL){
showError(pushError(STRING, STANDARD, initInfo("m_findByStringForNode()", "Error in getting the memory of string.")));
return NULL;
}
2018-07-23 04:59:16 +00:00
strcpy(p_temp, temp);
return mply_findByValue(p_list, STRING, (void *)p_temp);
2018-06-12 11:07:12 +00:00
}
2018-08-14 15:59:55 +00:00
List *mply_findByPointerForNode(List* p_list, void *temp) {
2018-07-23 04:59:16 +00:00
return mply_findByValue(p_list, POINTER, (void *)temp);
2018-07-23 05:47:31 +00:00
}
unsigned long long calListMemory(List * p_list){
Node *p_node = p_list->head;
unsigned long long nodes_size = 0LL;
unsigned long long list_size = sizeof(p_list);
while(p_node != NULL){
2018-08-03 10:35:10 +00:00
nodes_size += sizeof(p_node);
2018-07-23 05:47:31 +00:00
p_node = p_node->next;
}
return list_size + nodes_size;
2018-08-07 04:10:55 +00:00
}
int updateValueWithInt(Node *p_node,int value){
int *p_value = (int *)malloc(sizeof(int));
if(p_value == NULL){
showError(pushError(INT, STANDARD, initInfo("updateValueWithInt()", "Error in getting the memory of int.")));
return -1;
}
*p_value = value;
free(p_node->value);
p_node->value = p_value;
return 0;
2018-06-12 11:07:12 +00:00
}
2018-08-07 04:10:55 +00:00
int updateValueWithDouble(Node *p_node, double value){
double *p_value = (double *)malloc(sizeof(double));
if(p_value == NULL){
showError(pushError(DOUBLE, STANDARD, initInfo("updateValueWithDouble()", "Error in getting the memory of double.")));
return -1;
}
*p_value = value;
free(p_node->value);
p_node->value = p_value;
return 0;
}
int updateValueWithString(Node *p_node, char *string){
char *p_value = (char *)malloc(sizeof(strlen(string)) + 1);
if(p_value == NULL){
showError(pushError(STRING, STANDARD, initInfo("updateValueWithString()", "Error in getting the memory of string.")));
return -1;
}
strcpy(p_value, string);
free(p_node->value);
p_node->value = p_value;
return 0;
}
int updateValueWithPointer(Node *p_node, void *pointer){
free(p_node->value);
p_node->value = pointer;
return 0;
}
2018-08-14 15:59:55 +00:00
inline s_Node *s_nodeWithInt(int t_int){
s_Node *s_p_node = s_initNode();
int *pt_int = malloc(sizeof(int));
*pt_int = t_int;
s_p_node->value = pt_int;
return s_p_node;
}
inline s_Node *s_nodeWithUInt(unsigned int t_uint){
s_Node *s_p_node = s_initNode();
unsigned int *pt_uint = malloc(sizeof(unsigned int));
*pt_uint = t_uint;
s_p_node->value = pt_uint;
return s_p_node;
}
2018-08-17 08:58:15 +00:00
2018-08-14 15:59:55 +00:00
inline s_Node *s_nodeWithDouble(double t_double){
s_Node *s_p_node = s_initNode();
unsigned int *pt_double = malloc(sizeof(double));
*pt_double = t_double;
s_p_node->value = pt_double;
return s_p_node;
}
2018-08-17 08:58:15 +00:00
2018-08-14 15:59:55 +00:00
inline s_Node *s_nodeWithString(const char *t_string){
s_Node *s_p_node = s_initNode();
char *pt_string = malloc(strlen(t_string) + 1);
strcpy(pt_string, t_string);
s_p_node->value = pt_string;
return s_p_node;
}
2018-08-17 08:58:15 +00:00
2018-08-14 15:59:55 +00:00
inline s_Node *s_nodeWithPointer(const void *t_pointer){
s_Node *s_p_node = s_initNode();
s_p_node->value = (void *) t_pointer;
return s_p_node;
}
2018-08-17 08:58:15 +00:00
List *newReturn(int if_status ,int status, char *argc, ...){
List *p_list = initList(0);
if(if_status){
lisrti(p_list, status);
}
if(status != 0){
va_list args;
va_start(args, argc);
char p_ch = argc[0];
char t_ch[256];
int count = 0, t_count = 0;
while(p_ch != '\0'){
if(p_ch == '%'){
switch (argc[count + 1]) {
case 'd':
lisrti(p_list, va_arg(args, int));
break;
case 's':
t_count = 0;
while ((t_ch[t_count] = va_arg(args, int)) != '\0') t_count++;
t_ch[t_count] = '\0';
lisrts(p_list, t_ch);
break;
case 'f':
lisrtd(p_list, va_arg(args, double));
break;
case 'p':
lisrtp(p_list, va_arg(args, void *));
break;
default:
break;
}
count++;
}
p_ch = argc[++count];
}
va_end(args);
}
return p_list;
}
List *newCReturn(void){
return newReturn(1, 0, NULL);
}