NaoyaFukuma / webserv

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

logの整理 #115

Closed tomofuji-dev closed 1 year ago

tomofuji-dev commented 1 year ago

Overview

Please provide an overview of the issue you are creating. ex) I want to adapt the style of the header.

Purpose

Describe the purpose of this issue ex) To style it.

Task

Break down and manage your tasks.

tomofuji-dev commented 1 year ago
#ifndef DEBUG
  #define DEBUG_PRINT(fmt, ...) \
    do {} while(0);
#else
  #define DEBUG_PRINT(fmt, ...) \
    do { printf(fmt, ##__VA_ARGS__); } while(0);
#endif
NaoyaFukuma commented 1 year ago

上記のマクロを”define.hpp”に記載し、このヘッダファイルの中でマクロ自体は一括管理できるようにした。