This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <string.h> | |
void printHeader() { | |
printf("Content-Type: text/html; charset=UTF-8\n\n"); | |
printf("<html>\n"); | |
printf("<head>\n"); | |
printf(" <title>Imiona</title>\n"); | |
printf("</head>\n"); | |
printf("<body>\n"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Debian lighttpd configuration file | |
# | |
############ Options you really have to take care of #################### | |
## modules to load | |
# mod_access, mod_accesslog and mod_alias are loaded by default | |
# all other module should only be loaded if neccesary | |
# - saves some time | |
# - saves memory |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <string.h> | |
int strfindandblank( char *source, char *find ) { | |
int ile = 0; | |
int find_size = strlen(find); | |
char *pch; | |
pch = strstr(source, find); | |
while(pch!=NULL) { |