diff options
| author | Alexander Pickering <Apickx@cogarr.org> | 2016-05-10 17:22:44 -0400 |
|---|---|---|
| committer | Alexander Pickering <Apickx@cogarr.org> | 2016-05-10 17:22:44 -0400 |
| commit | f6cd00f2850d512730fa100519c3a9219c78a26b (patch) | |
| tree | adad260bdef113014b0ab2813d11b21270dc0e2a /ws2a | |
| parent | 6fd7d7c521ed94ec121c7765b32527905306450b (diff) | |
| parent | 2f020c64404b61a91172b1563c2da47619f397dc (diff) | |
| download | webpage-f6cd00f2850d512730fa100519c3a9219c78a26b.tar.gz webpage-f6cd00f2850d512730fa100519c3a9219c78a26b.tar.bz2 webpage-f6cd00f2850d512730fa100519c3a9219c78a26b.zip | |
Merge branch 'development'
Diffstat (limited to 'ws2a')
| -rw-r--r-- | ws2a/writetest.c | 21 |
1 files changed, 2 insertions, 19 deletions
diff --git a/ws2a/writetest.c b/ws2a/writetest.c index 03294fb..ccb5a61 100644 --- a/ws2a/writetest.c +++ b/ws2a/writetest.c @@ -1,27 +1,10 @@ #include <stdio.h> -#include <stdlib.h> -#include <string.h> -#include <time.h> -//convert label.png -virtual-pixel White -distort Arc 60 arctest.png - -//convert -background gray -fill cyan -pointsize 72 label:Alex label.png - -//convert label.png -virtual-pixel white -distort Barrel "0.2 0.0 0.0 1.0" barrel.png -#define ADJNUM 200 -#define NOUNUM 1524 -#define AVGADJ 7 -#define AVGNOU 7 -#define LONGADJ 14 -#define LONGNOU 15 int main(){ - FILE* tofile; - char tofilepath[100]; - sprintf(tofilepath,"../ws2a/%s.txt","test"); - tofile = fopen(tofilepath,"w"); + tofile = fopen("../test.txt","w"); fprintf(tofile,"This is some text"); fclose(tofile); printf("%s%c%c\n","Content-Type:text/html;charset=iso-8859-1",13,10); - printf("%s","test"); + printf("Completed without error!"); } |
