Initial commit of visual studio 9 git build superproject.
[git-build-vc9.git] / curl / tests / server / testpart.c
blob9cf78dd7f815a5260380e64913ce7e7f13094f40
1 /***************************************************************************
2 * _ _ ____ _
3 * Project ___| | | | _ \| |
4 * / __| | | | |_) | |
5 * | (__| |_| | _ <| |___
6 * \___|\___/|_| \_\_____|
8 * Copyright (C) 1998 - 2008, Daniel Stenberg, <daniel@haxx.se>, et al.
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 http://curl.haxx.se/docs/copyright.html.
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.
18 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19 * KIND, either express or implied.
21 * $Id: testpart.c,v 1.2 2008-02-28 00:55:06 yangtse Exp $
22 ***************************************************************************/
24 #include "setup.h"
26 #include "getpart.h"
28 #define _MPRINTF_REPLACE /* use our functions only */
29 #include <curl/mprintf.h>
31 /* include memdebug.h last */
32 #include "memdebug.h"
34 int main(int argc, char **argv)
36 if(argc< 3) {
37 printf("./testpart main sub\n");
39 else {
40 size_t size;
41 unsigned int i;
42 const char *buffer = spitout(stdin, argv[1], argv[2], &size);
43 for(i=0; i< size; i++)
44 printf("%c", buffer[i]);
46 return 0;