Skip to content

Commit

Permalink
common_stack
Browse files Browse the repository at this point in the history
  • Loading branch information
Chong Liu committed Jan 27, 2024
1 parent a4d6627 commit 3a0a980
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/*
* @FilePath : \Practice_LeetCode_C\F01_Common_Functions\inc\commonStack.h
* @FilePath : \Practice_LeetCode_C\F01_Common_Functions\inc\common_stack.h
* @Author : Chong Liu
* @CreateDate : 2023-10-26 13:36:39
* @LastEditors : Chong Liu
* @LastEditTime : 2024-01-19 08:02:01
* @LastEditTime : 2024-01-27 11:27:31
* =================================================================================
* Copyright (c) 2023 by Chong Liu, All Rights Reserved.
* =================================================================================
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#include "compile_cfg.h" /* NOLINT */
#if COMMON_STACK_EN /* whether compile this file, the definition of this macro can be found in compileCfg.h */
/* Header file (本文件头文件) */
#include "commonStack.h"
#include "F01_Common_Functions/inc/common_stack.h"
/* Standard header file (标准头文件) */
#include <stdlib.h>
#include <stdbool.h>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
*/
extern "C" {
/* Target header file (目标头文件) */
#include "commonStack.h"
#include "F01_Common_Functions/inc/common_stack.h"
/* Common function header file (通用头文件) */
#include "F01_Common_Functions/inc/common_def/common_type_def.h"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#define __MY_QUEUE_DOUBLE_STACK_H

#include <stdbool.h>
#include "commonStack.h"
#include "F01_Common_Functions/inc/common_stack.h"

/**********************************************************************************/
/* */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include "commonStack.h"
#include "F01_Common_Functions/inc/common_stack.h"
#include "myQueue_doubleStack.h"

/**********************************************************************************/
Expand Down

0 comments on commit 3a0a980

Please sign in to comment.