This commit is contained in:
Saturneic 2019-01-12 02:28:26 +08:00
parent 8f934bfaa3
commit dd929e2ccb
2 changed files with 13 additions and 12 deletions

View File

@ -9,8 +9,8 @@
@param if_sid id @param if_sid id
@return @return
*/ */
Node *nodeWithInt(int m_int, _Bool if_sid) { CNode *nodeWithInt(int m_int, _Bool if_sid) {
Node *p_node; CNode *p_node;
int *p_int = (int *)malloc(sizeof(int)); int *p_int = (int *)malloc(sizeof(int));
if(p_int == NULL){ if(p_int == NULL){
return NULL; return NULL;
@ -29,8 +29,8 @@ Node *nodeWithInt(int m_int, _Bool if_sid) {
@param if_sid id @param if_sid id
@return @return
*/ */
Node *nodeWithUInt(uint32_t m_uint, _Bool if_sid){ CNode *nodeWithUInt(uint32_t m_uint, _Bool if_sid){
Node *p_node; CNode *p_node;
unsigned int *pu_int = (uint32_t *)malloc(sizeof(uint32_t)); unsigned int *pu_int = (uint32_t *)malloc(sizeof(uint32_t));
if(pu_int == NULL){ if(pu_int == NULL){
return NULL; return NULL;
@ -49,8 +49,8 @@ Node *nodeWithUInt(uint32_t m_uint, _Bool if_sid){
@param if_sid id @param if_sid id
@return @return
*/ */
Node *nodeWithULLInt(uint64_t m_ullint, _Bool if_sid) { CNode *nodeWithULLInt(uint64_t m_ullint, _Bool if_sid) {
Node *p_node; CNode *p_node;
unsigned long long *p_ullint = (uint64_t *)malloc(sizeof(uint64_t)); unsigned long long *p_ullint = (uint64_t *)malloc(sizeof(uint64_t));
if(p_ullint == NULL){ if(p_ullint == NULL){
return NULL; return NULL;
@ -69,8 +69,8 @@ Node *nodeWithULLInt(uint64_t m_ullint, _Bool if_sid) {
@param if_sid id @param if_sid id
@return @return
*/ */
Node *nodeWithDouble(double m_double, _Bool if_sid) { CNode *nodeWithDouble(double m_double, _Bool if_sid) {
Node *p_node; CNode *p_node;
double *p_double = (double *)malloc(sizeof(double)); double *p_double = (double *)malloc(sizeof(double));
if(p_double == NULL){ if(p_double == NULL){
return NULL; return NULL;
@ -89,8 +89,8 @@ Node *nodeWithDouble(double m_double, _Bool if_sid) {
@param if_sid id @param if_sid id
@return @return
*/ */
Node *nodeWithString(const char *m_string, _Bool if_sid) { CNode *nodeWithString(const char *m_string, _Bool if_sid) {
Node *p_node; CNode *p_node;
char *p_string = (char *)malloc(sizeof(char)*(strlen(m_string) + 1)); char *p_string = (char *)malloc(sizeof(char)*(strlen(m_string) + 1));
if(p_string == NULL){ if(p_string == NULL){
return NULL; return NULL;
@ -109,8 +109,8 @@ Node *nodeWithString(const char *m_string, _Bool if_sid) {
@param if_sid id @param if_sid id
@return @return
*/ */
Node *nodeWithPointer(const void *m_pointer, _Bool if_sid) { CNode *nodeWithPointer(const void *m_pointer, _Bool if_sid) {
Node *p_node = initNode(if_sid); CNode *p_node = initNode(if_sid);
initMallocValueForNode(p_node, POINTER, m_pointer); initMallocValueForNode(p_node, POINTER, m_pointer);
return p_node; return p_node;
} }

View File

@ -60,6 +60,7 @@ uint64_t getInfoForListThrough(Chain *expand_resources, int type){
return *((uint64_t *)p_node->value); return *((uint64_t *)p_node->value);
} }
/** /**