00001 /*************************************************************************** 00002 * _ _ ____ _ 00003 * Project ___| | | | _ \| | 00004 * / __| | | | |_) | | 00005 * | (__| |_| | _ <| |___ 00006 * \___|\___/|_| \_\_____| 00007 * 00008 * Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al. 00009 * 00010 * This software is licensed as described in the file COPYING, which 00011 * you should have received as part of this distribution. The terms 00012 * are also available at https://curl.haxx.se/docs/copyright.html. 00013 * 00014 * You may opt to use, copy, modify, merge, publish, distribute and/or sell 00015 * copies of the Software, and permit persons to whom the Software is 00016 * furnished to do so, under the terms of the COPYING file. 00017 * 00018 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 00019 * KIND, either express or implied. 00020 * 00021 ***************************************************************************/ 00022 #include "server_setup.h" 00023 00024 #include "getpart.h" 00025 00026 #define _MPRINTF_REPLACE /* use our functions only */ 00027 #include <curl/mprintf.h> 00028 00029 /* include memdebug.h last */ 00030 #include "memdebug.h" 00031 00032 int main(int argc, char **argv) 00033 { 00034 int rc; 00035 char *part; 00036 size_t partlen, i; 00037 00038 if(argc< 3) { 00039 printf("./testpart main sub\n"); 00040 } 00041 else { 00042 rc = getpart(&part, &partlen, argv[1], argv[2], stdin); 00043 if(rc) 00044 return rc; 00045 for(i = 0; i < partlen; i++) 00046 printf("%c", part[i]); 00047 free(part); 00048 } 00049 return 0; 00050 } 00051