Mercurial > vim
comparison src/proto/hashtab.pro @ 7668:21b0a39d13ed v7.4.1133
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Jan 19 13:22:12 2016 +0100
patch 7.4.1133
Problem: Generated function prototypes still have __ARGS().
Solution: Generate function prototypes without __ARGS().
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 19 Jan 2016 13:30:06 +0100 |
parents | e63691e7c504 |
children | 34966be2e856 |
comparison
equal
deleted
inserted
replaced
7667:201b9c7e3df7 | 7668:21b0a39d13ed |
---|---|
1 /* hashtab.c */ | 1 /* hashtab.c */ |
2 void hash_init __ARGS((hashtab_T *ht)); | 2 void hash_init(hashtab_T *ht); |
3 void hash_clear __ARGS((hashtab_T *ht)); | 3 void hash_clear(hashtab_T *ht); |
4 void hash_clear_all __ARGS((hashtab_T *ht, int off)); | 4 void hash_clear_all(hashtab_T *ht, int off); |
5 hashitem_T *hash_find __ARGS((hashtab_T *ht, char_u *key)); | 5 hashitem_T *hash_find(hashtab_T *ht, char_u *key); |
6 hashitem_T *hash_lookup __ARGS((hashtab_T *ht, char_u *key, hash_T hash)); | 6 hashitem_T *hash_lookup(hashtab_T *ht, char_u *key, hash_T hash); |
7 void hash_debug_results __ARGS((void)); | 7 void hash_debug_results(void); |
8 int hash_add __ARGS((hashtab_T *ht, char_u *key)); | 8 int hash_add(hashtab_T *ht, char_u *key); |
9 int hash_add_item __ARGS((hashtab_T *ht, hashitem_T *hi, char_u *key, hash_T hash)); | 9 int hash_add_item(hashtab_T *ht, hashitem_T *hi, char_u *key, hash_T hash); |
10 void hash_remove __ARGS((hashtab_T *ht, hashitem_T *hi)); | 10 void hash_remove(hashtab_T *ht, hashitem_T *hi); |
11 void hash_lock __ARGS((hashtab_T *ht)); | 11 void hash_lock(hashtab_T *ht); |
12 void hash_unlock __ARGS((hashtab_T *ht)); | 12 void hash_unlock(hashtab_T *ht); |
13 hash_T hash_hash __ARGS((char_u *key)); | 13 hash_T hash_hash(char_u *key); |
14 /* vim: set ft=c : */ | 14 /* vim: set ft=c : */ |