mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 12:32:40 +03:00
* HACKING: Added a section "Programming Tips" which lists mistakes
that have been done once and should never be repeated.
This commit is contained in:
parent
d99d02c743
commit
b5ef1bd79a
@ -1,3 +1,8 @@
|
||||
2004-09-02 Roland Illig <roland.illig@gmx.de>
|
||||
|
||||
* HACKING: Added a section "Programming Tips" which lists mistakes
|
||||
that have been done once and should never be repeated.
|
||||
|
||||
2004-08-29 Roland Illig <roland.illig@gmx.de>
|
||||
|
||||
* m4/ri-gcc-warnings.m4: Now handles only the last --enable or
|
||||
|
21
HACKING
21
HACKING
@ -275,3 +275,24 @@ widgets. Some widgets also have user callbacks.
|
||||
To create your own widget, use init_widget(). In this case, you must
|
||||
provide a callback function. Please note that it's not the same as the
|
||||
user callback in some widgets.
|
||||
|
||||
|
||||
PROGRAMMING TIPS
|
||||
================
|
||||
|
||||
const: For every function taking a string argument, decide whether you
|
||||
(as a user of the function) would expect that the string is modi-
|
||||
fied by the function. If not, declare the string argument as
|
||||
"const char *". If your implementation needs to modify the string,
|
||||
use g_strdup to create a local copy.
|
||||
|
||||
g_strlcpy: Whenever you use this function, be sure to add "glib-compat.h"
|
||||
to the included headers. This is because in glib-1.2 there is
|
||||
no such function.
|
||||
|
||||
size_t: This data type is suitable for expressing sizes of memory or the
|
||||
length of strings. This type is unsigned, so you need not check
|
||||
if the value is >= 0.
|
||||
|
||||
strncpy: Don't use this function in newly created code. It is slow, insecure
|
||||
and hard to use. A much better alternative is g_strlcpy (see there).
|
||||
|
Loading…
Reference in New Issue
Block a user