SILC_STR_DELETE

NAME

    #define SILC_STR_DELETE(n) ...

DESCRIPTION

Deletes bytes from the buffer by moving data in order to delete it. The size of the buffer is also reduced, but no data is lost in the process.

The `n' specifies the number of bytes to delete from the current data area. If `n' is -1 this deletes all bytes from the data area. This effectively moves the data from the tail area into the current data area. The length of the data area after this is 0.

Use this only for formatting.

     Formatting:  SILC_STR_DELETE(int bytes)