Lines Matching +full:22 +full:c
3 Currently, decode() is prototyped in utf.h, its body is in utf.c and it
4 is called from util.c.
7 when compiling util.c, the body of decode() is out-of-scope for that
10 Furthermore, decode() uses a utf8d, which is a static defined in utf.c .
11 So utf8d is not visible when compiling util.c either.
16 …es -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Os -c utf.c -fPIC -DPIC -o .…
17 utf.c:36:12: warning: ‘utf8d’ is static but used in inline function ‘decode’ which is not static
20 utf.c:30:19: warning: ‘utf8d’ is static but used in inline function ‘decode’ which is not static
23 …s -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Os -c util.c -fPIC -DPIC -o .…
25 from util.c:20:
39 decode.h nad ditch decode.c if decode really must be inline. This is
43 diff -durN a/src/utf.c b/src/utf.c
44 --- a/src/utf.c 2014-07-15 01:43:20.000000000 +0200
45 +++ b/src/utf.c 2015-08-22 22:29:38.667393786 +0200
57 +++ b/src/utf.h 2015-08-22 22:29:10.439227396 +0200
58 @@ -22,7 +22,7 @@