2020-11-01 04:04:29 +00:00
|
|
|
#include <string.xh>
|
2020-11-02 20:32:26 +00:00
|
|
|
|
2020-11-02 06:36:32 +00:00
|
|
|
#include <X11/Xlib.h>
|
2020-11-02 20:32:26 +00:00
|
|
|
#include <X11/Xatom.h>
|
2020-11-01 04:04:29 +00:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
int main(int argc, char** argv) {
|
|
|
|
string a;
|
|
|
|
|
|
|
|
a = "abc";
|
|
|
|
printf("a: %s\n", a.text);
|
|
|
|
}
|
|
|
|
|
|
|
|
// vim: set ft=c :
|