bug-hurd
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH 04/14] ddb/db_macro.c: move struct definition to a header fil


From: Samuel Thibault
Subject: Re: [PATCH 04/14] ddb/db_macro.c: move struct definition to a header file
Date: Sun, 8 Dec 2013 23:28:20 +0900
User-agent: Mutt/1.5.21+34 (58baf7c9f32f) (2010-12-30)

Marin Ramesa, le Mon 02 Dec 2013 22:54:42 +0100, a écrit :
> * ddb/db_macro.c (db_user_macro): Move struct definition to ddb/db_macro.h.

Ditto.

> ---
>  ddb/db_macro.c | 6 ------
>  ddb/db_macro.h | 8 ++++++++
>  2 files changed, 8 insertions(+), 6 deletions(-)
> 
> diff --git a/ddb/db_macro.c b/ddb/db_macro.c
> index 9d14b12..6c1bff3 100644
> --- a/ddb/db_macro.c
> +++ b/ddb/db_macro.c
> @@ -45,14 +45,8 @@
>  
>  #define DB_MACRO_LEVEL       5               /* max macro nesting */
>  #define DB_NARGS     10              /* max args */
> -#define DB_NUSER_MACRO       10              /* max user macros */
>  
>  int          db_macro_free = DB_NUSER_MACRO;
> -struct db_user_macro {
> -     char    m_name[TOK_STRING_SIZE];
> -     char    m_lbuf[DB_LEX_LINE_SIZE];
> -     int     m_size;
> -} db_user_macro[DB_NUSER_MACRO];
>  
>  int          db_macro_level = 0;
>  db_expr_t    db_macro_args[DB_MACRO_LEVEL][DB_NARGS];
> diff --git a/ddb/db_macro.h b/ddb/db_macro.h
> index 525eead..ea21bca 100644
> --- a/ddb/db_macro.h
> +++ b/ddb/db_macro.h
> @@ -24,6 +24,14 @@
>  #include <sys/types.h>
>  #include <ddb/db_variables.h>
>  
> +#define DB_NUSER_MACRO       10              /* max user macros */
> +
> +struct db_user_macro {
> +     char    m_name[TOK_STRING_SIZE];
> +     char    m_lbuf[DB_LEX_LINE_SIZE];
> +     int     m_size;
> +} db_user_macro[DB_NUSER_MACRO];
> +
>  extern void db_def_macro_cmd (void);
>  
>  extern void db_del_macro_cmd (void);
> -- 
> 1.8.1.4
> 
> 

-- 
Samuel
 je n ai cité aucun message et sur irc on parle effectivement comme des
 enfants de 5 ans na!
 > 3. Quand tu cite un message, répond _après_ ce que tu cites !
 -+- Yota in : Guide du Neuneu d'Usenet - A un Yota près c'était bon -+-



reply via email to

[Prev in Thread] Current Thread [Next in Thread]