HttpServer/util.c

17 lines
282 B
C
Raw Normal View History

2024-06-24 20:04:27 +01:00
//
// Created by franchioping on 6/24/24.
//
#include "util.h"
#include <stdio.h>
void print_string(char* string, size_t string_len){
for(int i = 0; i < string_len; i++){
if(string[i] == '\r'){
continue;
}
printf("%c", string[i]);
}
}