File: truncate_comm.c

package info (click to toggle)
garlic 1.6-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, sid, trixie
  • size: 4,516 kB
  • sloc: ansic: 52,465; makefile: 2,254
file content (56 lines) | stat: -rw-r--r-- 1,298 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/* Copyright (C) 2000 Damir Zucic */

/*=============================================================================

				truncate_comm.c

Purpose:
	Truncate the command string,  string length,  carriage position and
	array of text widths.

Input:
	(1) Pointer to RuntimeS structure.

Output:
	(1) Command string truncated, command string length reset, carriage
	    position reset and array of text widths reset.
	(2) Return value.

Return value:
	(1) Positive always (trivial).

========includes:============================================================*/

#include <stdio.h>

#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <X11/Xos.h>
#include <X11/Xatom.h>

#include "defines.h"
#include "typedefs.h"

/*======truncate command string:=============================================*/

int TruncateCommand_ (RuntimeS *runtimeSP)
{
int			i;

/* Truncate the command string: */
runtimeSP->curr_commandA[0] = '\0';

/* Reset the command string length and carriage position: */
runtimeSP->command_length = 0;
runtimeSP->carriage_position = 0;

/* Reset the array of text widths: */
for (i = 0; i < COMMSTRINGSIZE; i++) runtimeSP->left_part_widthA[i] = 0;

/* Return positive value (success): */
return 1;
}

/*===========================================================================*/