Projects STRLCPY neomutt Commits 2951598e
🤬
Revision indexing in progress... (symbol navigation in revisions will be accurate after indexed)
  • ■ ■ ■ ■ ■
    attach/attachments.c
    skipped 26 lines
    27 27   */
    28 28   
    29 29  #include "config.h"
    30  -#include <regex.h>
    31 30  #include <stdbool.h>
    32 31  #include <stdint.h>
    33 32  #include <stdio.h>
    skipped 576 lines
  • ■ ■ ■ ■
    enter/enter.c
    skipped 32 lines
    33 33  #include "mutt/lib.h"
    34 34  #include "core/lib.h"
    35 35  #include "enter.h"
    36  -#include "state.h"
     36 +#include "state.h" // IWYU pragma: keep
    37 37   
    38 38  /// combining mark / non-spacing character
    39 39  #define COMB_CHAR(wc) (IsWPrint(wc) && (wcwidth(wc) == 0))
    skipped 412 lines
  • ■ ■ ■ ■ ■
    enter/enter.h
    skipped 22 lines
    23 23  #ifndef MUTT_ENTER_ENTER_H
    24 24  #define MUTT_ENTER_ENTER_H
    25 25   
     26 +#include <stddef.h>
    26 27  #include <stdbool.h>
    27 28   
    28 29  struct EnterState;
    skipped 35 lines
  • ■ ■ ■ ■ ■
    enter/functions.c
    skipped 40 lines
    41 41  #include "history/lib.h"
    42 42  #include "pattern/lib.h"
    43 43  #include "enter.h"
    44  -#include "init.h"
    45 44  #include "keymap.h"
    46 45  #include "mutt_history.h"
    47 46  #include "mutt_mailbox.h"
    48 47  #include "muttlib.h"
    49 48  #include "opcodes.h"
    50  -#include "protos.h"
    51  -#include "state.h"
     49 +#include "state.h" // IWYU pragma: keep
    52 50  #include "wdata.h"
    53 51   
    54 52  /**
    skipped 676 lines
  • ■ ■ ■ ■ ■
    enter/state.c
    skipped 26 lines
    27 27   */
    28 28   
    29 29  #include "config.h"
     30 +#include <string.h>
    30 31  #include "mutt/lib.h"
    31 32  #include "state.h"
    32 33   
    skipped 49 lines
  • ■ ■ ■ ■ ■
    enter/state.h
    skipped 22 lines
    23 23  #ifndef MUTT_ENTER_STATE_H
    24 24  #define MUTT_ENTER_STATE_H
    25 25   
    26  -#include <stddef.h>
    27 26  #include <wchar.h> // IWYU pragma: keep
    28 27   
    29 28  /**
    skipped 17 lines
  • ■ ■ ■ ■ ■ ■
    enter/wdata.h
    skipped 25 lines
    26 26  #include "config.h"
    27 27  #include <stdbool.h>
    28 28  #include <wchar.h>
    29  -#include <wctype.h>
    30 29  #include "mutt.h"
    31 30  #include "history/lib.h"
    32  - 
    33  -struct CompletionData;
    34  -struct MuttWindow;
    35 31   
    36 32  /**
    37 33   * enum EnterRedrawFlags - Redraw flags for mutt_enter_string_full()
    skipped 41 lines
  • ■ ■ ■ ■ ■
    protos.h
    skipped 25 lines
    26 26   
    27 27  #include "config.h"
    28 28  #include <stdbool.h>
    29  -#include <stdio.h>
    30 29  #include "mutt.h"
    31 30  #include "menu/lib.h"
    32 31   
    skipped 47 lines
  • ■ ■ ■ ■ ■
    send/config.c
    skipped 30 lines
    31 31  #include <config/lib.h>
    32 32  #include <stdbool.h>
    33 33  #include <stdint.h>
     34 +#include <string.h>
    34 35  #include "mutt/lib.h"
    35 36  #include "conn/lib.h"
    36 37  #include "lib.h"
    skipped 337 lines
Please wait...
Page is in error, reload to recover