Files
slstatus/components/divider.c
Sravan Balaji 20beb5ca3e Checkupdates & Divider Functions
- Add checkupdates function to count number of available updates
- Add divider function to print divider symbol as argument
- Update README with these modifications
2020-08-02 11:37:37 -04:00

10 lines
156 B
C

/* See LICENSE file for copyright and license details. */
#include <stdio.h>
#include <string.h>
const char *
divider(const char *div)
{
return div;
}