Subversion Repositories HelenOS-historic

Rev

Rev 1575 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1575 Rev 1649
Line 24... Line 24...
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
-
 
29
/** @addtogroup console
-
 
30
 * @{
-
 
31
 */
-
 
32
/** @file
-
 
33
 */
-
 
34
 
29
#include <screenbuffer.h>
35
#include <screenbuffer.h>
30
#include <malloc.h>
36
#include <malloc.h>
31
#include <unistd.h>
37
#include <unistd.h>
32
 
38
 
33
/** Store one character to screenbuffer. Its position is determined by scr->position_x and scr->position_y.
39
/** Store one character to screenbuffer. Its position is determined by scr->position_x and scr->position_y.
Line 131... Line 137...
131
{
137
{
132
    scr->style.fg_color = fg_color;
138
    scr->style.fg_color = fg_color;
133
    scr->style.bg_color = bg_color;
139
    scr->style.bg_color = bg_color;
134
}
140
}
135
 
141
 
-
 
142
 
-
 
143
/** @}
-
 
144
 */
-
 
145