HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux ip-172-31-42-149 5.15.0-1084-aws #91~20.04.1-Ubuntu SMP Fri May 2 07:00:04 UTC 2025 aarch64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: //home/ubuntu/neovim/build/include/garray.h.generated.h
// IWYU pragma: private, include "nvim/garray.h"
#define DEFINE_FUNC_ATTRIBUTES
#include "nvim/func_attr.h"
#undef DEFINE_FUNC_ATTRIBUTES
#ifndef DLLEXPORT
#  ifdef MSWIN
#    define DLLEXPORT __declspec(dllexport)
#  else
#    define DLLEXPORT
#  endif
#endif
DLLEXPORT void ga_clear(garray_T *gap);
DLLEXPORT void ga_clear_strings(garray_T *gap);
DLLEXPORT void ga_init(garray_T *gap, int itemsize, int growsize);
DLLEXPORT void ga_set_growsize(garray_T *gap, int growsize);
DLLEXPORT void ga_grow(garray_T *gap, int n);
DLLEXPORT void ga_remove_duplicate_strings(garray_T *gap);
DLLEXPORT char *ga_concat_strings_sep(const garray_T *gap, const char *sep) FUNC_ATTR_NONNULL_RET;
DLLEXPORT char *ga_concat_strings(const garray_T *gap) FUNC_ATTR_NONNULL_RET;
DLLEXPORT void ga_concat(garray_T *gap, const char *restrict s);
DLLEXPORT void ga_concat_len(garray_T *const gap, const char *restrict s, const size_t len) FUNC_ATTR_NONNULL_ALL;
DLLEXPORT void ga_append(garray_T *gap, uint8_t c);
DLLEXPORT void *ga_append_via_ptr(garray_T *gap, size_t item_size);
#include "nvim/func_attr.h"