Commit 155d9206 authored by Wayne Davison's avatar Wayne Davison

Added send_msg_int() function.

parent 6b2a3d5d
......@@ -405,6 +405,13 @@ int send_msg(enum msgcode code, const char *buf, int len)
return 1;
}
void send_msg_int(enum msgcode code, int num)
{
char numbuf[4];
SIVAL(numbuf, 0, num);
send_msg(code, numbuf, 4);
}
int get_redo_num(int itemizing, enum logcode code)
{
while (1) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment