Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

In this compliant solution the length of the identifier declaring the function pointer bash_groupname_completion() in bashline.h is less than 31 32 characters. 

Code Block
bgColor#ccccff
langc
/* in bash/bashline.h */
extern char* bash_groupname_completion(const char*, int);   

/* in a.c */
#include <bashline.h>

void f(const char *s, int i) {
  bash_groupname_completion(s, i);  
}

/* in b.c */
int bash_groupname_completion_func; 

...