wildcard.c
Go to the documentation of this file.
1 /***************************************************************************
2  * _ _ ____ _
3  * Project ___| | | | _ \| |
4  * / __| | | | |_) | |
5  * | (__| |_| | _ <| |___
6  * \___|\___/|_| \_\_____|
7  *
8  * Copyright (C) 1998 - 2017, Daniel Stenberg, <daniel@haxx.se>, et al.
9  *
10  * This software is licensed as described in the file COPYING, which
11  * you should have received as part of this distribution. The terms
12  * are also available at https://curl.haxx.se/docs/copyright.html.
13  *
14  * You may opt to use, copy, modify, merge, publish, distribute and/or sell
15  * copies of the Software, and permit persons to whom the Software is
16  * furnished to do so, under the terms of the COPYING file.
17  *
18  * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19  * KIND, either express or implied.
20  *
21  ***************************************************************************/
22 
23 #include "curl_setup.h"
24 
25 #include "wildcard.h"
26 #include "llist.h"
27 #include "fileinfo.h"
28 /* The last 3 #include files should be in this order */
29 #include "curl_printf.h"
30 #include "curl_memory.h"
31 #include "memdebug.h"
32 
34 {
36  wc->state = CURLWC_INIT;
37 
38  return CURLE_OK;
39 }
40 
42 {
43  if(!wc)
44  return;
45 
46  if(wc->tmp_dtor) {
47  wc->tmp_dtor(wc->tmp);
48  wc->tmp_dtor = ZERO_NULL;
49  wc->tmp = NULL;
50  }
51  DEBUGASSERT(wc->tmp == NULL);
52 
53  Curl_llist_destroy(&wc->filelist, NULL);
54 
55 
56  free(wc->path);
57  wc->path = NULL;
58  free(wc->pattern);
59  wc->pattern = NULL;
60 
61  wc->customptr = NULL;
62  wc->state = CURLWC_INIT;
63 }
#define free(ptr)
Definition: curl_memory.h:130
curl_wildcard_states state
Definition: wildcard.h:47
void Curl_wildcard_dtor(struct WildcardData *wc)
Definition: wildcard.c:41
#define DEBUGASSERT(x)
CURLcode
Definition: curl.h:454
void Curl_llist_init(struct curl_llist *l, curl_llist_dtor dtor)
Definition: llist.c:37
CURLcode Curl_wildcard_init(struct WildcardData *wc)
Definition: wildcard.c:33
#define ZERO_NULL
Definition: curlx.c:131
struct curl_llist filelist
Definition: wildcard.h:50
curl_wildcard_tmp_dtor tmp_dtor
Definition: wildcard.h:52
Definition: curl.h:455
char * path
Definition: wildcard.h:48
void * tmp
Definition: wildcard.h:51
char * pattern
Definition: wildcard.h:49
void Curl_llist_destroy(struct curl_llist *list, void *user)
Definition: llist.c:130
void * customptr
Definition: wildcard.h:53
void Curl_fileinfo_dtor(void *user, void *element)
Definition: fileinfo.c:36


rc_tagdetect_client
Author(s): Monika Florek-Jasinska , Raphael Schaller
autogenerated on Sat Feb 13 2021 03:42:17