NaoyaFukuma / webserv

This is when you finally understand why a URL starts with HTTP
3 stars 0 forks source link

C言語の標準ライブラリ関数をC++標準ライブラリとして使用する #54

Closed NaoyaFukuma closed 1 year ago

NaoyaFukuma commented 1 year ago

例)

include

time() 上記が、C言語の関数を生で使っているケース

以下に修正

include

std::time()

前者のC言語の関数を生で使っているコードが残っているのですべて修正する必要がある。